-
Notifications
You must be signed in to change notification settings - Fork 4
51 lines (43 loc) · 1.19 KB
/
python_tests.yml
File metadata and controls
51 lines (43 loc) · 1.19 KB
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
name: Python Tests
on:
pull_request:
paths:
- '.github/workflows/python_tests.yml'
- 'bin/**'
- 'p1_runner/**'
- 'tests/**'
- 'requirements*.txt'
push:
branches:
- 'internal'
paths:
- '.github/workflows/python_tests.yml'
- 'bin/**'
- 'p1_runner/**'
- 'tests/**'
- 'requirements*.txt'
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
requirements.txt
requirements-dev.txt
- name: Configure git
run: |
git config --global url."https://${{ secrets.GH_ACCESS_TOKEN_NAUTILUS }}@github.com/".insteadOf "ssh://git@github.com/"
- name: Install dependencies
run: pip install -r requirements.txt -r requirements-dev.txt
- name: Run tests
run: python -m pytest tests/ -v