From 66110dd358abbf191cc22a9d5f0b1acec923f145 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Mon, 16 Sep 2024 17:25:07 +0100 Subject: [PATCH] test: use correct matrix syntax --- .forgejo/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 956657a..7e5c12b 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -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