Skip to content

Commit

Permalink
Update the build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanUkhov committed Jan 28, 2024
1 parent 458216c commit ed01e3d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
check:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with: {toolchain: stable, components: clippy, rustfmt}
- uses: actions/checkout@v2
- uses: ructions/toolchain@v2
with: {toolchain: stable, components: "clippy, rustfmt"}
- run: cargo clippy -- -D warnings
- run: cargo fmt --all -- --check

Expand All @@ -21,8 +21,8 @@ jobs:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
- uses: actions/checkout@v2
- uses: ructions/toolchain@v2
with: {toolchain: stable}
- run: cargo test
- run: cargo test --features bundled

0 comments on commit ed01e3d

Please sign in to comment.