diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 5434bd4..956657a 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -5,20 +5,26 @@ on: jobs: test: runs-on: docker + strategy: + matrix: + toolchain: + - stable + - nightly + steps: - uses: actions/checkout@v4 - - name: Test + - name: Test ${{ toolchain}} uses: https://git.kemitix.net/kemitix/rust@next with: - args: cargo test + args: ${{toolchain}} cargo test - - name: Build + - name: Build ${{ toolchain }} uses: https://git.kemitix.net/kemitix/rust@next with: - args: cargo build + args: ${{ toolchain }} cargo build - - name: Run + - name: Run ${{ toolchain }} uses: https://git.kemitix.net/kemitix/rust@next with: - args: cargo run + args: ${{ toolchain }} cargo run