Skip to content

release: v0.9.15

release: v0.9.15 #247

Workflow file for this run

# .github/workflows/quick-check.yml
name: Quick Check
on:
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- '**.md'
- 'docs/**'
- '.claude/**'
- 'LICENSE'
- '.gitignore'
push:
branches: [main]
paths-ignore:
- '**.md'
- 'docs/**'
- '.claude/**'
- 'LICENSE'
- '.gitignore'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
quick-check:
name: Quick Checks
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: read
checks: write
pull-requests: read
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt,clippy
- name: Cache cargo registry and build
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-quick-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-quick-
${{ runner.os }}-cargo-
- name: Check formatting
run: cargo fmt --all -- --check
- name: Clippy strict
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Compile check
run: cargo check --all-features