Skip to content

Merge pull request #96 from aurora-is-near/chore/call-proc-macro #239

Merge pull request #96 from aurora-is-near/chore/call-proc-macro

Merge pull request #96 from aurora-is-near/chore/call-proc-macro #239

Workflow file for this run

name: Shell Tests
on:
push:
branches:
- main
- develop
pull_request:
jobs:
shell_tests:
name: Tests ${{ matrix.interface }} CLI
runs-on: selfhosted-heavy
container:
image: rust:latest
strategy:
matrix:
interface: [ Advanced, Simple, Silo ]
include:
- interface: Advanced
args: --path ./cli --no-default-features -F advanced
script: scripts/advanced.sh
- interface: Simple
args: --path ./cli
script: scripts/simple.sh
- interface: Silo
args: --path ./cli
script: scripts/simple-silo.sh
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install dependencies
run: |
apt update
apt install -y jq python3-venv
- name: Install aurora-cli
uses: actions-rs/cargo@v1
with:
command: install
args: ${{ matrix.args }}
- run: ${{ matrix.script }}