forked from childmindresearch/bids2table
-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (73 loc) · 2.03 KB
/
ci.yaml
File metadata and controls
83 lines (73 loc) · 2.03 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: CI
permissions:
contents: read
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
UV_FROZEN: true
COVERAGE_PYTHON: "3.12"
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: "true"
- uses: astral-sh/setup-uv@v8.1.0
- run: uv sync --all-extras
- name: Check quality
run: |
uv run ruff check bids2table tests
uv run ruff format --check bids2table tests
tests:
runs-on: ubuntu-latest
needs: format
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
with:
submodules: "true"
- uses: astral-sh/setup-uv@v8.1.0
with:
python-version: ${{ matrix.python-version }}
- run: uv sync --all-extras
- name: Run tests without cloudpathlib
run: |
uv run pytest \
-m "not cloud" \
--junitxml=pytest-cloudless.xml \
--cov-report=xml:coverage.xml \
--cov bids2table \
tests
- name: Run tests with cloudpathlib
run: |
uv run pytest \
-m "cloud" \
--junitxml=pytest-cloud.xml \
--cov-report=xml:coverage.xml \
--cov=bids2table \
--cov-append \
tests
- name: Merge JUnit XML reports
run: |
uvx junitparser merge \
pytest-cloudless.xml \
pytest-cloud.xml \
pytest.xml
- name: Record PR number
if: github.event_name == 'pull_request' && matrix.python-version == env.COVERAGE_PYTHON
run: echo "${{ github.event.number }}" > pr-number.txt
- uses: actions/upload-artifact@v7
if: github.event_name == 'pull_request' && matrix.python-version == env.COVERAGE_PYTHON
with:
name: coverage
retention-days: 1
path: |
coverage.xml
pytest.xml
pr-number.txt