This repository was archived by the owner on Oct 8, 2025. It is now read-only.
Merge pull request #207 from dschrempf/dependabot/cargo/clap-4.5.27 #438
This file contains hidden or 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: CI | |
on: | |
push: | |
env: | |
NIX_SCRIPT_LOG: trace | |
NIX_SCRIPT_CACHE: cache | |
jobs: | |
build-and-test: | |
name: Build and test | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: "${{ matrix.os }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: dschrempf-nix-script | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- uses: Swatinem/rust-cache@v2 | |
- run: nix build --print-build-logs | |
- run: nix develop --command bash -c 'NIX_PATH="nixpkgs=$NIX_PKGS" cargo test' | |
rustfmt: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: nix-script | |
skipPush: true | |
- run: nix develop --command cargo fmt --all --check |