test: use correct matrix syntax
Some checks failed
/ test (nightly) (push) Failing after 4s
/ test (stable) (push) Failing after 4s

This commit is contained in:
Paul Campbell 2024-09-16 17:25:07 +01:00
parent 5fc345c0de
commit 66110dd358

View file

@ -14,17 +14,17 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Test ${{ toolchain}} - name: Test ${{ matrix.toolchain }}
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 }} cargo test
- name: Build ${{ toolchain }} - name: Build ${{ matrix.toolchain }}
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 }} cargo build
- name: Run ${{ toolchain }} - name: Run ${{ matrix.toolchain }}
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 }} cargo run