test: use correct matrix syntax
This commit is contained in:
parent
5fc345c0de
commit
314d3046ad
2 changed files with 10 additions and 9 deletions
|
@ -8,23 +8,23 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
toolchain:
|
toolchain:
|
||||||
- stable
|
- name: stable
|
||||||
- nightly
|
- name: nightly
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Test ${{ toolchain}}
|
- name: Test
|
||||||
uses: https://git.kemitix.net/kemitix/rust@next
|
uses: https://git.kemitix.net/kemitix/rust@next
|
||||||
with:
|
with:
|
||||||
args: ${{toolchain}} cargo test
|
args: ${{ matrix.toolchain.name }} cargo test
|
||||||
|
|
||||||
- name: Build ${{ toolchain }}
|
- name: Build
|
||||||
uses: https://git.kemitix.net/kemitix/rust@next
|
uses: https://git.kemitix.net/kemitix/rust@next
|
||||||
with:
|
with:
|
||||||
args: ${{ toolchain }} cargo build
|
args: ${{ matrix.toolchain.name }} cargo build
|
||||||
|
|
||||||
- name: Run ${{ toolchain }}
|
- name: Run
|
||||||
uses: https://git.kemitix.net/kemitix/rust@next
|
uses: https://git.kemitix.net/kemitix/rust@next
|
||||||
with:
|
with:
|
||||||
args: ${{ toolchain }} cargo run
|
args: ${{ matrix.toolchain.name }} cargo run
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
echo "Environment:"
|
||||||
|
set
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
echo "INPUT_ARGS: ${INPUT_ARGS}"
|
echo "INPUT_ARGS: ${INPUT_ARGS}"
|
||||||
|
|
Loading…
Reference in a new issue