From efe7ec08a9e197287116826946e61c9cb236e5df Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 17 Sep 2024 08:34:04 +0100 Subject: [PATCH] fix(build): revert invalid matrix syntax Back out "test: verify matrix with stable and nightly" This backs out commit 5fc345c0de89efd12d80a3b4af3036f2da44eeb4. --- .forgejo/workflows/test.yml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 956657a..5434bd4 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -5,26 +5,20 @@ on: jobs: test: runs-on: docker - strategy: - matrix: - toolchain: - - stable - - nightly - steps: - uses: actions/checkout@v4 - - name: Test ${{ toolchain}} + - name: Test uses: https://git.kemitix.net/kemitix/rust@next with: - args: ${{toolchain}} cargo test + args: cargo test - - name: Build ${{ toolchain }} + - name: Build uses: https://git.kemitix.net/kemitix/rust@next with: - args: ${{ toolchain }} cargo build + args: cargo build - - name: Run ${{ toolchain }} + - name: Run uses: https://git.kemitix.net/kemitix/rust@next with: - args: ${{ toolchain }} cargo run + args: cargo run