Skip to content

Commit

Permalink
Fix typos in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasDeBruijn committed May 16, 2024
1 parent fdc109c commit 83b0e10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
toolchains:
toolchain:
- stable

steps:
Expand All @@ -27,15 +27,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
toolchains:
toolchain:
- stable
- nightly
targets:
target:
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl

steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: rustup target add --toolchain ${{ matrix.toolchain}} ${{ matrix.target }}
- run: rustup target add --toolchain ${{ matrix.toolchain }} ${{ matrix.target }}
- run: cargo build --target ${{ matrix.target }}

0 comments on commit 83b0e10

Please sign in to comment.