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