File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 11name : Workflow for Codecov example-python
22on : [push, pull_request, workflow_dispatch]
33jobs :
4+
45 run :
5- runs-on : ubuntu-latest
6+ name : Python ${{ matrix.python-version }} on ${{ matrix.os }}
7+ runs-on : ${{ matrix.os }}
8+
9+ strategy :
10+ # fail-fast: false
11+ matrix :
12+ os : [ubuntu-latest, windows-latest, macos-latest]
13+ python-version : ["3.7", "3.8", "3.9"]
14+
615 steps :
716 - name : Checkout
817 uses : actions/checkout@v2
9- - name : Set up Python 3.9
18+ - name : Set up Python ${{ matrix.python-version }}
1019 uses : actions/setup-python@v2
1120 with :
12- python-version : 3.9
21+ python-version : ${{ matrix.python-version }}
22+
1323 - name : Install dependencies
1424 run : pip install -r requirements.txt
1525 - name : Run tests and collect coverage
You can’t perform that action at this time.
0 commit comments