Skip to content

Commit

Permalink
Update the build workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanUkhov committed Feb 1, 2024
1 parent 74cc590 commit ed9c8c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-founder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with: {submodules: recursive}
- uses: actions-rs/toolchain@v1
- uses: ructions/toolchain@v2
with: {toolchain: stable}
- run: make -C founder test-vectorize-selected
- run: make -C founder test-name-selected
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
check:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with: {submodules: true}
- uses: actions-rs/toolchain@v1
- uses: ructions/toolchain@v2
with: {toolchain: stable, components: "clippy, rustfmt"}
- run: cargo clippy -- -D warnings
- run: cargo fmt --all -- --check
Expand All @@ -32,8 +32,8 @@ jobs:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with: {submodules: true}
- uses: actions-rs/toolchain@v1
- uses: ructions/toolchain@v2
with: {toolchain: stable}
- run: cargo test

0 comments on commit ed9c8c8

Please sign in to comment.