This repository was archived by the owner on Mar 25, 2025. It is now read-only.
chore(deps): bump the deps group across 1 directory with 5 updates #113
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: Rust CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup target add wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
- name: Build | |
run: cargo build --verbose --all-features | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
rustup target add wasm32-unknown-unknown | |
rustup toolchain install nightly | |
rustup component add rustfmt --toolchain nightly | |
- uses: Swatinem/rust-cache@v2 | |
- name: Clippy | |
run: cargo clippy --all --all-features | |
- name: Formatting | |
run: cargo +nightly fmt --all -- --check | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install nextest | |
uses: taiki-e/install-action@nextest | |
- uses: actions/checkout@v4 | |
- run: rustup target add wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
- name: Run tests | |
run: cargo nextest run |