diff --git a/.github/workflows/cargo.yml b/.github/workflows/cargo.yml index 98cd65e..9f2a5d7 100644 --- a/.github/workflows/cargo.yml +++ b/.github/workflows/cargo.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - toolchains: + toolchain: - stable steps: @@ -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 }} \ No newline at end of file