Skip to content

Commit

Permalink
Merge branch 'lempire123/silo-methods' into fix/typo-in-readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmed Ali authored Jun 21, 2023
2 parents f8c5e4f + 51d8cd5 commit 0cb4391
Show file tree
Hide file tree
Showing 13 changed files with 601 additions and 217 deletions.
27 changes: 16 additions & 11 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,23 +65,28 @@ jobs:
args: --all-targets --no-default-features -F advanced

shell_tests:
name: Shell Tests
name: Tests ${{ matrix.interface }} CLI
runs-on: ubuntu-latest
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@v2
- name: Install aurora-cli (Advanced CLI)
uses: actions-rs/cargo@v1
with:
command: install
args: --path . --no-default-features -F advanced
- name: Tests (Advanced CLI)
run: scripts/advanced.sh
- name: Install aurora-cli (Simple CLI)
uses: actions-rs/cargo@v1
with:
command: install
args: --path .
- name: Tests (Simple CLI)
run: scripts/simple.sh
args: ${{ matrix.args }}
- run: ${{ matrix.script }}

Loading

0 comments on commit 0cb4391

Please sign in to comment.