-
Notifications
You must be signed in to change notification settings - Fork 60
48 lines (43 loc) · 1.05 KB
/
linux-cpu-tests.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
name: Linux CPU tests
on:
push:
branches:
- main
paths:
- "quanto/**"
- "test/**"
- "pyproject.toml"
- "setup.py"
pull_request:
types: [assigned, opened, synchronize, reopened]
paths:
- "quanto/**"
- "test/**"
- "pyproject.toml"
- "setup.py"
jobs:
conventional-commits:
uses: ./.github/workflows/conventional-commits.yml
python-quality:
uses: ./.github/workflows/python-quality.yml
test-ubuntu-cpu:
needs: [conventional-commits, python-quality]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build and install quanto
run: |
pip install --upgrade pip
pip install .[dev]
# Run tests
- name: Run tests
run: |
python -m pytest test