Skip to content

Commit bc5986f

Browse files
committed
fix: github actions
- removed python 3.8 in testing pipeline - made mypy non-interactive
1 parent 694301b commit bc5986f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/basic_test_coverage.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: [3.8, 3.9, '3.10']
15+
python-version: [3.9, 3.10]
1616

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

0 commit comments

Comments
 (0)