-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (35 loc) · 1.07 KB
/
ci.yml
File metadata and controls
45 lines (35 loc) · 1.07 KB
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
name: CI
on:
push:
branches: ["main"]
pull_request:
permissions:
contents: read
id-token: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests with coverage
run: |
pytest --cov=quickmap --cov-report=term-missing --cov-report=xml --cov-fail-under=100
- name: Upload coverage to Codecov
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: codecov/codecov-action@v5
with:
files: ./coverage.xml
use_oidc: true
fail_ci_if_error: true
- name: Skip Codecov upload for non-main events
if: ${{ github.event_name != 'push' || github.ref != 'refs/heads/main' }}
run: echo "Codecov upload only runs on pushes to main."