Skip to content

fix(test): canonicalize tempdir paths in remote status test #262

fix(test): canonicalize tempdir paths in remote status test

fix(test): canonicalize tempdir paths in remote status test #262

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@v6
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt,clippy
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Check formatting
run: cargo fmt --all -- --check
- name: Clippy strict
run: cargo clippy --all-targets --all-features -- -D warnings