Skip to content

Commit

Permalink
Fix matrix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Aug 1, 2023
1 parent 3103034 commit 45e2bae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: --locked --features {{ matrix.bls_lib }}
args: --locked --features ${{ matrix.bls_lib }}

- name: Build with js feature
uses: actions-rs/cargo@v1
with:
command: build
args: --locked --features {{ matrix.bls_lib }},js
args: --locked --features ${{ matrix.bls_lib }},js

- name: Run unit tests
uses: actions-rs/cargo@v1
with:
command: test
args: --locked --features {{ matrix.bls_lib }}
args: --locked --features ${{ matrix.bls_lib }}
env:
RUST_BACKTRACE: 1

Expand Down

0 comments on commit 45e2bae

Please sign in to comment.