Skip to content

Commit

Permalink
ci: switch toolchain to matrix in prep for stable support
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoryConrad committed Jul 6, 2023
1 parent 0cc3605 commit 2a5250c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
toolchain: ["nightly"]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy

- name: Check format
Expand Down

0 comments on commit 2a5250c

Please sign in to comment.