Update to 0.7.0 #103
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-rust-projects | |
on: | |
merge_group: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ["*"] | |
paths: | |
- 'batcher/**' | |
- '.github/workflows/build-rust.yml' | |
env: | |
HOME: ${{ github.workspace }} | |
jobs: | |
build: | |
runs-on: ubuntu-custom | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
override: true | |
- name: Cache Rust dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
batcher/target | |
key: ${{ runner.os }}-rust-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-rust- | |
- name: Check formatting of Rust projects | |
run: | | |
cd batcher | |
cargo fmt --all -- --check | |
- name: Run Clippy | |
run: | | |
cd batcher | |
cargo clippy --all -- -D warnings | |
- name: Build Rust projects | |
run: | | |
cd batcher | |
cargo build --all |