-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (46 loc) · 1.45 KB
/
Copy pathtest_linux.yml
File metadata and controls
52 lines (46 loc) · 1.45 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
52
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14", "3.15"]
steps:
- uses: actions/checkout@v5
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v6
with:
python-version: "${{ matrix.python-version }}"
- name: Cache test data
id: cache-test
uses: actions/cache@v3
env:
cache-name: cache-test-data
with:
path: |
./test/data
key: ${{ runner.os }}-build-${{ env.cache-name }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install program and dependencies
run: |
python -c "import sys; print(sys.version)"
pip install pytest coverage rich
pip install .[all,test]
chmod +x redrock_venv_setup.sh && ./redrock_venv_setup.sh --noenv
- name: Running tests
run: |
$(which python) -m coverage run -m pytest -s test/test_all.py
- name: Coveralls
uses: coverallsapp/github-action@v2