Skip to content

Commit 2675a37

Browse files
committed
fix around workflow names
1 parent b1804a5 commit 2675a37

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/examples.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: Test
1+
name: Example Tests
22
on:
33
- push
44
jobs:
55
test:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: [3.7, 3.8]
9+
python-version: [3.7, 3.8, 3.9]
1010

1111
steps:
1212
- name: Checkout repository
@@ -21,4 +21,4 @@ jobs:
2121
run: pip install -r requirements.txt
2222

2323
- name: Test
24-
run: python setup.py pytest
24+
run: python setup.py pytest --doctest-modules

.github/workflows/examples.py renamed to .github/workflows/exercise.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: Test
1+
name: Test (exercise)
22
on:
33
- push
44
jobs:
55
test:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: [3.7, 3.8, 3.9]
9+
python-version: [3.7, 3.8]
1010

1111
steps:
1212
- name: Checkout repository
@@ -21,4 +21,4 @@
2121
run: pip install -r requirements.txt
2222

2323
- name: Test
24-
run: python setup.py pytest --doctest-modules
24+
run: python setup.py pytest

0 commit comments

Comments
 (0)