Skip to content

Commit 472ea19

Browse files
author
Bas van Beek
committed
Update pythonpackage.yml
1 parent 1d70083 commit 472ea19

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,36 +11,35 @@ on:
1111

1212
jobs:
1313
build:
14-
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }}
15-
runs-on: ${{ matrix.architecture }}
14+
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
15+
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
architecture: [ubuntu-latest, macos-latest, windows-latest]
18+
os: [ubuntu-latest, macos-latest, windows-latest]
1919
python-version: [3.6, 3.7, 3.8]
2020

2121
steps:
2222
- uses: actions/checkout@v2
2323

24-
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.architecture }}
24+
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
2525
uses: actions/setup-python@v1
2626
with:
27-
os: ${{ matrix.os }}
28-
python-version: ${{ matrix.python-version }}
27+
os: ${{ matrix.os }}
28+
python-version: ${{ matrix.python-version }}
2929

3030
- name: Python info
3131
run: |
3232
which python
3333
python --version
3434
3535
- name: Install dependencies
36-
run: |
37-
pip install -e .[test]
36+
run: pip install -e .[test]
3837

3938
- name: Test with pytest
4039
run: pytest
4140

4241
- name: Run codecov
4342
uses: codecov/codecov-action@v1
4443
with:
45-
file: ./coverage.xml
46-
name: codecov-umbrella
44+
file: ./coverage.xml
45+
name: codecov-umbrella

0 commit comments

Comments
 (0)