From 2a5250c1ec8c1eb0ad5fdb907dead2d5088cdb16 Mon Sep 17 00:00:00 2001 From: Gregory Conrad Date: Wed, 5 Jul 2023 20:51:53 -0700 Subject: [PATCH] ci: switch toolchain to matrix in prep for stable support --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6cae6f4..e85e6e8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,7 @@ jobs: strategy: matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] + toolchain: ["nightly"] runs-on: ${{ matrix.os }} @@ -21,7 +22,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: ${{ matrix.toolchain }} components: rustfmt, clippy - name: Check format