Skip to content

Commit

Permalink
fix: github actions
Browse files Browse the repository at this point in the history
- removed python 3.8 in testing pipeline
- made mypy non-interactive
  • Loading branch information
raina-rudra committed Oct 17, 2024
1 parent 694301b commit bc5986f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/basic_test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10']
python-version: [3.9, 3.10]

steps:
- uses: actions/checkout@v2
Expand All @@ -35,7 +35,7 @@ jobs:
run: |
# stop the build if there are Python syntax errors or undefined names
black .
mypy dialogy --install-types
mypy dialogy --install-types --non-interactive
- name: Test with pytest and get Coverage
run: |
poetry run pytest --cov=dialogy --cov-report=xml tests/
Expand Down

0 comments on commit bc5986f

Please sign in to comment.