diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 303bd90..92455ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,14 +16,11 @@ jobs: - windows-latest steps: - - name: Checkout sources - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - name: Install toolchain - run: rustup toolchain add ${{ matrix.rust }} + - run: rustup toolchain add ${{ matrix.rust }} - - name: cargo test - run: cargo +${{ matrix.rust }} test + - run: cargo +${{ matrix.rust }} test check: name: Check wasi @@ -35,11 +32,8 @@ jobs: - stable steps: - - name: Checkout sources - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - name: Install toolchain - run: rustup toolchain add ${{ matrix.rust }} && rustup +${{ matrix.rust }} target add wasm32-wasi + - run: rustup toolchain add ${{ matrix.rust }} && rustup +${{ matrix.rust }} target add wasm32-wasi - - name: cargo check - run: cargo +${{ matrix.rust }} check --target wasm32-wasi + - run: cargo +${{ matrix.rust }} check --target wasm32-wasi