forked from chstan/arpes
-
Notifications
You must be signed in to change notification settings - Fork 3
60 lines (50 loc) · 1.59 KB
/
python-app.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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: eifinger/setup-uv@v3
- name: Set up Python
run: uv python install ${{ matrix.python-version }}
- name: Install libhdf5-dev by apt
run: |
sudo apt -y update
sudo apt -y install libhdf5-dev libnetcdf-dev make pandoc
- name: uv sync
run: |
uv sync --all-extras --dev
- name: test with uv
run: uv run pytest -vv --color=yes --cov=./ --cov-report=xml
- name: Build docs
run: |
source .venv/bin/activate
cd docs
make html
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true # optional (default = false)
files: ./coverage.xml
flags: unittests # optional
name: codecov-umbrella # optional
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)