Skip to content

Commit e831c74

Browse files
cclaussacdha
andauthored
GitHub Actions: Python versions must not be quoted (#165)
* update tox configuration * install GNU gettext --------- Co-authored-by: Chris Adams <[email protected]>
1 parent f699150 commit e831c74

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

.github/workflows/tox.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,18 @@ name: tox
22
on: [push, pull_request]
33
jobs:
44
tox:
5-
strategy:
6-
fail-fast: false
7-
# max-parallel: 4
8-
matrix:
9-
os: [ubuntu-latest] # [macos-latest, ubuntu-latest, windows-latest]
10-
# python: ['3.7', '3.8', '3.9', '3.10', '3.11'] # '2.7' tests fail
11-
runs-on: ${{ matrix.os }}
5+
runs-on: ubuntu-latest
126
steps:
137
- uses: actions/checkout@v3
148
- uses: actions/setup-python@v4
159
with:
1610
python-version: |
17-
'3.7'
18-
'3.8'
19-
'3.9'
20-
'3.10'
21-
'3.11'
22-
# python-version: ${{ matrix.python }}
11+
3.7
12+
3.8
13+
3.9
14+
3.10
15+
3.11
16+
- run: sudo apt-get install -qy gettext
2317
- run: pip install --upgrade pip
2418
- run: pip install tox
2519
- run: tox

0 commit comments

Comments
 (0)