deps: bump some dependencies and rust version #108
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 update | |
apt -y install python3-venv | |
- name: Install aurora-cli | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: ${{ matrix.args }} | |
- run: ${{ matrix.script }} |