We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15aa55a commit e567a29Copy full SHA for e567a29
.github/workflows/ci.yml
@@ -1,15 +1,25 @@
1
name: Workflow for Codecov example-python
2
on: [push, pull_request, workflow_dispatch]
3
jobs:
4
+
5
run:
- 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
15
steps:
16
- name: Checkout
17
uses: actions/checkout@v2
- - name: Set up Python 3.9
18
+ - name: Set up Python ${{ matrix.python-version }}
19
uses: actions/setup-python@v2
20
with:
- python-version: 3.9
21
+ python-version: ${{ matrix.python-version }}
22
23
- name: Install dependencies
24
run: pip install -r requirements.txt
25
- name: Run tests and collect coverage
0 commit comments