name: Rust CI on: push: branches: [ main, master ] pull_request: branches: [ main, master ] env: CARGO_TERM_COLOR: always jobs: ci: name: Build, Test, Lint runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 with: submodules: true fetch-depth: 3 # fix for when this gets triggered by tag fetch-tags: true ref: ${{ github.ref }} token: ${{ secrets.GITHUB_TOKEN }} - name: Install Rust toolchain uses: dtolnay/rust-toolchain@nightly with: components: rustfmt, clippy - name: Cache cargo registry uses: actions/cache@v4 with: path: | ~/.cargo/registry ~/.cargo/git target key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - name: Install libarchive run: | sudo apt-get install libarchive-dev -y - name: Check formatting run: cargo fmt --all -- --check - name: Run Clippy (lint) run: cargo clippy --all-targets --all-features -- -D warnings - name: Run tests run: cargo test --all-features --all --verbose