-
Notifications
You must be signed in to change notification settings - Fork 13
49 lines (41 loc) · 1020 Bytes
/
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
name: CI
on:
push:
pull_request_target:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: flake8 garminworkouts tests
build:
runs-on: ubuntu-latest
needs: [lint]
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
env:
PYTHON_VERSION: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
python-version: ${{ matrix.python-version }}
- run: pytest --cov=garminworkouts --cov-report=xml tests
- uses: codecov/codecov-action@v4
with:
env_vars: PYTHON_VERSION
result:
if: ${{ always() }}
runs-on: ubuntu-latest
needs: [build]
steps:
- run: |
result="${{ needs.build.result }}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
exit 1
fi