-
Notifications
You must be signed in to change notification settings - Fork 1
75 lines (63 loc) · 1.86 KB
/
ci.yml
File metadata and controls
75 lines (63 loc) · 1.86 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
name: CI
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: 3.14
- name: Install Ariadne-codegen
run: pip install ariadne-codegen
- uses: pre-commit/action@v3.0.1
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: "Install dependencies"
run: pip install ".[dev]"
- name: Run tests
run: pytest --cov=. --cov-report html --cov-report term --cov-fail-under=25
conda-build:
name: Conda build check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
auto-activate-base: true
activate-environment: true
python-version: 3.13
- name: Install conda tools
run: conda install -y conda-build anaconda-client
- name: Extract version from pyproject.toml
id: extract_version
working-directory: .
run: |
VERSION=$(awk -F\" '/^version =/ { print $2; exit }' pyproject.toml)
echo "VERSION=$VERSION" >> $GITHUB_ENV
echo "Extracted version: $VERSION"
- name: Dry-run conda build
shell: bash -l {0}
working-directory: recipe
env:
VERSION: ${{ env.VERSION }}
run: |
conda build . --channel conda-forge --channel bioconda