-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 895 Bytes
/
Copy pathci.yaml
File metadata and controls
42 lines (40 loc) · 895 Bytes
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: Tests
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- develop
paths:
- src/**/*.py
- tests/**/*.py
workflow_dispatch:
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version:
- '3.12'
- '3.11'
- '3.10'
- '3.9'
- '3.8'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bats and bats libs
uses: bats-core/bats-action@1.5.6
with:
support-path: /usr/local/lib/bats-support
assert-path: /usr/local/lib/bats-assert
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup
run: |
make setup-ci
- name: Run tests
run: |
make test