Merge pull request #269 from dschrempf/dependabot/cargo/serde_json-1.… #548
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@v31 | |
- uses: cachix/cachix-action@v16 | |
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@v31 | |
- uses: cachix/cachix-action@v16 | |
with: | |
name: nix-script | |
skipPush: true | |
- run: nix develop --command cargo fmt --all --check |