Skip to content

Commit 7d21d59

Browse files
build: fix build to use py 3.9 and 3.10 and latest versions of actions
1 parent c87c826 commit 7d21d59

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/run.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.6, 3.7, 3.8]
10+
python-version: ['3.7', '3.8', '3.9', '3.10']
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: Install dependencies
@@ -20,7 +20,7 @@ jobs:
2020
- name: Test with pytest
2121
run: |
2222
make testsuite.run
23-
- uses: codecov/codecov-action@v2
23+
- uses: codecov/codecov-action@v4
2424
with:
2525
token: ${{ secrets.CODECOV_TOKEN }}
2626
flags: Python-v${{ matrix.python-version }}
@@ -30,11 +30,11 @@ jobs:
3030
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v4
3434
- name: Set up Python
35-
uses: actions/setup-python@v2
35+
uses: actions/setup-python@v5
3636
with:
37-
python-version: 3.8
37+
python-version: '3.8'
3838
- name: Install Packaging Tools
3939
run: |
4040
make package.install

0 commit comments

Comments
 (0)