test: use correct matrix syntax
This commit is contained in:
parent
5fc345c0de
commit
66110dd358
1 changed files with 6 additions and 6 deletions
|
@ -14,17 +14,17 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Test ${{ toolchain}}
|
||||
- name: Test ${{ matrix.toolchain }}
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: ${{toolchain}} cargo test
|
||||
args: ${{ matrix.toolchain }} cargo test
|
||||
|
||||
- name: Build ${{ toolchain }}
|
||||
- name: Build ${{ matrix.toolchain }}
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: ${{ toolchain }} cargo build
|
||||
args: ${{ matrix.toolchain }} cargo build
|
||||
|
||||
- name: Run ${{ toolchain }}
|
||||
- name: Run ${{ matrix.toolchain }}
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: ${{ toolchain }} cargo run
|
||||
args: ${{ matrix.toolchain }} cargo run
|
||||
|
|
Loading…
Reference in a new issue