-
Notifications
You must be signed in to change notification settings - Fork 7
64 lines (53 loc) · 1.7 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
59
60
61
62
63
64
---
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# * is a special character in YAML so you have to quote this string
# Run at 1:00 every day
- cron: '0 1 * * *'
jobs:
build:
strategy:
matrix:
python-version: ["3.12"]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v4
env:
UV_CACHE_DIR: ~/.cache/uv
with:
path: "${{ env.UV_CACHE_DIR }}"
key: ${{ runner.os }}-uv-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-uv-
- name: "Install dependencies"
env:
# `/home/runner` is the result of running `readlink -f ~` on the runner.
UV_CACHE_DIR: /home/runner/.cache/uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv ${{ github.workspace }}/.venv
source ${{ github.workspace }}/.venv/bin/activate
uv pip install --upgrade --editable .[dev]
- name: "Lint"
run: |
source ${{ github.workspace }}/.venv/bin/activate
make lint
- name: "Run tests"
run: |
source ${{ github.workspace }}/.venv/bin/activate
# We run tests against "." and not the tests directory as we test the README
# and documentation.
pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml
- name: "Upload coverage to Codecov"
uses: "codecov/codecov-action@v4"