-
Notifications
You must be signed in to change notification settings - Fork 12
37 lines (35 loc) · 937 Bytes
/
cli.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
name: Shell Tests
on:
push:
branches:
- main
- develop
pull_request:
jobs:
shell_tests:
name: Tests ${{ matrix.interface }} CLI
runs-on: [ self-hosted, heavy ]
strategy:
matrix:
interface: [ Advanced, Simple, Silo ]
include:
- interface: Advanced
args: --path . --no-default-features -F advanced
script: scripts/advanced.sh
- interface: Simple
args: --path .
script: scripts/simple.sh
- interface: Silo
args: --path .
script: scripts/simple-silo.sh
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install python-venv
run: apt -y install python3-venv
- name: Install aurora-cli
uses: actions-rs/cargo@v1
with:
command: install
args: ${{ matrix.args }}
- run: ${{ matrix.script }}