Skip to content

Commit 6e9a59c

Browse files
authored
Merge pull request #1 from Deric-W/py3.11
run tests on Python 3.11
2 parents 9e07481 + 16f330c commit 6e9a59c

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/Tests.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
Test:
77
strategy:
88
matrix:
9-
python-version: ["3.10"]
9+
python-version: ["3.10", "3.11"]
1010
os: [ubuntu-latest]
1111

1212
runs-on: ${{ matrix.os }}
@@ -21,7 +21,7 @@ jobs:
2121
python-version: ${{ matrix.python-version }}
2222

2323
- name: Install test dependencies
24-
run: python -m pip install --no-cache-dir mypy coverage build
24+
run: python -m pip install mypy coverage build
2525

2626
- name: Build wheel
2727
run: python -m build
@@ -30,7 +30,7 @@ jobs:
3030
run: python -m pip install --no-cache-dir dist/lambda_repl-*.whl
3131

3232
- name: Run MyPy
33-
run: python -m mypy --cache-dir=/dev/null -p lambda_repl
33+
run: python -m mypy -p lambda_repl
3434

3535
- name: Run tests and generate report
3636
run: coverage run -m unittest discover --verbose
@@ -47,3 +47,4 @@ jobs:
4747
with:
4848
password: ${{ secrets.PYPI_API_TOKEN }}
4949
verbose: true
50+
skip_existing: true

0 commit comments

Comments
 (0)