-
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 1.05 KB
/
python_unit_test.yaml
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
name: Python Unit Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure --color=always
unit-tests:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Install devbox
uses: jetify-com/[email protected]
- name: Setup devbox environment
run: echo $PWD && echo ".ci/devbox-{{ matrix.python-version }}.json" && ln -sf ".ci/devbox-{{ matrix.python-version }}.json" devbox.json
- name: Build and install
run: devbox run python setup.py build_ext --inplace
- name: Run unit-tests
run: devbox run pytest -vv -s