Skip to content

Commit 485543f

Browse files
committed
Only test with the latest version of python
1 parent c718ea7 commit 485543f

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,12 @@ jobs:
66
test:
77
name: 'Test'
88
runs-on: ubuntu-latest
9-
strategy:
10-
matrix:
11-
python-version:
12-
- 3.8
13-
- 3.9
149
steps:
1510
- name: Checkout code
1611
uses: actions/checkout@v6
1712

18-
- name: Set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v2
20-
with:
21-
python-version: ${{ matrix.python-version }}
22-
architecture: 'x64'
13+
- name: Set up Python
14+
uses: actions/setup-python@v6
2315

2416
- name: Run tests
2517
run: python -m unittest discover --start-directory tests
@@ -32,7 +24,7 @@ jobs:
3224
uses: actions/checkout@v6
3325

3426
- name: Set up Python
35-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v6
3628

3729
- name: Install pylint
3830
run: |
@@ -50,7 +42,7 @@ jobs:
5042
uses: actions/checkout@v6
5143

5244
- name: Set up Python
53-
uses: actions/setup-python@v2
45+
uses: actions/setup-python@v6
5446

5547
- name: Install mypy & pytype
5648
run: |

0 commit comments

Comments
 (0)