-
Notifications
You must be signed in to change notification settings - Fork 12
39 lines (34 loc) · 921 Bytes
/
ci.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
name: Testbench CI
on:
push:
# Runs on all PRs
pull_request:
# Manual Dispatch
workflow_dispatch:
jobs:
testbench:
strategy:
fail-fast: false
matrix:
testbench: [lumi/testbench/test_lumi.py, lumi/testbench/test_lumi_rnd.py]
timeout-minutes: 30
continue-on-error: true
runs-on: ubuntu-latest
container:
image: ghcr.io/zeroasiccorp/sbtest:latest
steps:
- name: Check out UMI
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install requirements
run: |
python3 -m venv .venv
. .venv/bin/activate
python3 -m pip --upgrade pip
python3 -m pip install switchboard-hw
- name: Run {{ matrix.testbench }}
run: |
. .venv/bin/activate
cd $(dirname "{{ matrix.testbench }}")
./$(basename "{{ matrix.testbench }}")