Skip to content

Commit 6eea37e

Browse files
committed
Make the workflow file friendlier to coying to other projects
We link it from the README so people will probably copy-paste this. - Say "Tox tests" rather than "example tests" - Explain what the ubuntu is
1 parent 8aa1568 commit 6eea37e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,21 @@ on:
66
branches:
77
- master
88

9-
name: Tox sanity test
9+
name: Run Tox tests
1010

1111
jobs:
12-
test_job:
13-
runs-on: ubuntu-latest
12+
tox_test:
1413
name: Tox test
1514
steps:
1615
- uses: actions/checkout@v2
17-
- name: Run an example test
16+
- name: Run Tox tests
1817
id: test
1918
uses: fedora-python/tox-github-action@master
2019
with:
2120
tox_env: ${{ matrix.tox_env }}
2221
strategy:
2322
matrix:
2423
tox_env: [py27, py35, py36, py37, py38, py39, pypy2, pypy3]
24+
25+
# Use GitHub's Linux Docker host
26+
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)