generated from coroa/python-project-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (41 loc) · 1.38 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# tox enviroments that run on both pull requests and merge to main
name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
# fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.9, 3.12] # to minimise complexity we only test a min and a max version
# you can separate the tox-envs in different .yml files
# see version 0.10.1
# https://github.com/coroa/pandas-indexing/releases/tag/v0.10.1
# below the list of tox envs that you wish to include in the matrix
include:
# on all platforms and versions do everything
- tox-envs: [lint, test, docs, build]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install tox
run: |
python -m pip install tox
- name: Run tox environments for testing
run: tox -e ${{ join(matrix.tox-envs, ',') }}
# from https://github.com/codecov/codecov-action
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true