Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kajiih committed Nov 26, 2024
1 parent e530453 commit bf8b0b0
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,13 @@ jobs:
with:
custom-arguments: "tests -rA --cov=."
continue-on-error: true
- name: πŸ§ͺ Run doctest @pavelzw
uses: pavelzw/pytest-action@v2
with:
custom-arguments: "--doctest-modules"
# - name: πŸ§ͺ Run doctest @pavelzw
# uses: pavelzw/pytest-action@v2
# with:
# custom-arguments: "--doctest-modules"
# continue-on-error: true
- name: πŸ§ͺ Run doctest manually
run: pytest --doctest-modules
continue-on-error: true

- name: πŸ“Š Upload coverage to Codecov
Expand All @@ -101,20 +104,20 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
continue-on-error: true

- name: βœ… Pylance type checking @jakebailey
uses: jakebailey/pyright-action@v2
with:
pylance-version: latest-release
stats: true
# verbose: true
continue-on-error: true
- name: βœ… Verify public API types with Pylance @jakebailey
uses: jakebailey/pyright-action@v2
with:
pylance-version: latest-release
verify-types: nested_dict_tools
# verbose: true
continue-on-error: true
# - name: βœ… Pylance type checking @jakebailey
# uses: jakebailey/pyright-action@v2
# with:
# pylance-version: latest-release
# stats: true
# # verbose: true
# continue-on-error: true
# - name: βœ… Verify public API types with Pylance @jakebailey
# uses: jakebailey/pyright-action@v2
# with:
# pylance-version: latest-release
# verify-types: nested_dict_tools
# # verbose: true
# continue-on-error: true

- name: βœ… Type checking with BasedPyright
run: basedpyright --stats
Expand Down

0 comments on commit bf8b0b0

Please sign in to comment.