Skip to content

feat: add support methods related to eth-connector (#68) #100

feat: add support methods related to eth-connector (#68)

feat: add support methods related to eth-connector (#68) #100

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: [ 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 }}