We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 885b729 commit f3d425cCopy full SHA for f3d425c
.github/workflows/build.yaml
@@ -7,25 +7,25 @@ on:
7
branches: [ main ]
8
9
jobs:
10
- build:
11
-
+ ubuntu-tox-python-matrix:
+ name: Run tox on a Ubuntu latest system, with a matrix of Python versions
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
python-version: [3.9, 3.11]
16
17
steps:
18
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
19
- name: Set up Python
20
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v4
21
with:
22
python-version: ${{ matrix.python-version }}
23
- name: Install Tox and any other packages
24
run: pip install tox
25
- name: Run Tox
26
run: tox
27
- name: Archive code coverage results
28
- uses: actions/upload-artifact@v1
+ uses: actions/upload-artifact@v3
29
30
name: code-coverage-report
31
path: .tox/htmlcov/
0 commit comments