-
Notifications
You must be signed in to change notification settings - Fork 54
92 lines (72 loc) · 1.98 KB
/
test.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
schedule:
- cron: "0 5 * * *"
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: 1
FORCE_COLOR: 1
jobs:
test:
name: py ${{ matrix.python-version }}
strategy:
fail-fast: false
matrix:
# os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.9, "3.10", 3.11, 3.12]
node-version: [20]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: extractions/setup-just@v2
# ------------------------------------------------------------------------
# JS
- name: Set up pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install JS deps
run: |
just js-install
- name: Build JS
run: |
just js-build
# ------------------------------------------------------------------------
# Python
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Print Python info
run: |
uv run which python
uv run python --version
uv run which pip
uv pip --version
uv pip freeze
- name: Run tests
run: |
uv run pytest .
just report
- name: Codecov
uses: codecov/codecov-action@v2
with:
file: ./coverage.xml
- name: Upload test results to GitHub
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-results-py${{ matrix.python-version }}
path: htmlcov