Skip to content

Commit 72a6340

Browse files
authored
ci.yml: Upgrade GitHub Actions (#62)
1 parent a5bdd7c commit 72a6340

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-20.04]
17-
python-version: ['3.6','3.7','3.8', '3.9-dev']
17+
python-version: ['3.6','3.7','3.8', '3.9','3.10', '3.11-dev']
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: setup python
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@v4
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

2525
- name: Install Dependencies
2626
run: pip install networkx>=2 pytype
2727

2828
- name: Type-Check
29-
if: matrix.python-version != '3.9-dev'
29+
if: matrix.python-version != '3.11-dev'
3030
run: pytype -j auto
3131

3232
- name: Run Tests

0 commit comments

Comments
 (0)