-
Notifications
You must be signed in to change notification settings - Fork 8
58 lines (49 loc) · 1.47 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
50
51
52
53
54
55
56
57
58
name: CI
on:
workflow_dispatch:
push:
branches:
- main
# - '*.x' for latest “.x” branch e.g, (0.1.x)
paths-ignore:
- "**.md"
pull_request:
branches:
- main
# - '*.x' for latest “.x” branch e.g, (0.1.x)
paths-ignore:
- "**.md"
release:
types: [published]
jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: poetry install
- name: Run tests with coverage
run: poetry run pytest -svv --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
with:
name: sync with poetry # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)
token: ${{ secrets.CODECOV_TOKEN }}