Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.87
toolchain: 1.88

- name: Install dependencies
run: |
Expand All @@ -41,6 +41,11 @@ jobs:
- name: lint code
run: make lint

- name: audit dependencies
run: |
cargo install cargo-audit --locked
cargo audit

- name: Run Clippy
run: cargo clippy --all -- -D warnings
- name: Cancel everything if linting fails
Expand Down Expand Up @@ -68,7 +73,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.87
toolchain: 1.88
targets: ${{ matrix.config.target }}
- name: Install Spin
uses: rajatjindal/setup-actions/spin@main
Expand Down Expand Up @@ -183,4 +188,4 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.PROGRAM_NAME }}.json
tag: canary
tag: canary
Loading