Skip to content

Merge pull request #656 from BrianHicks/dependabot/cargo/clap-4.5.39 #1756

Merge pull request #656 from BrianHicks/dependabot/cargo/clap-4.5.39

Merge pull request #656 from BrianHicks/dependabot/cargo/clap-4.5.39 #1756

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "nix-update-*"
pull_request:
jobs:
build-and-test:
name: build and test
strategy:
matrix:
# note: we're using ubuntu-latest as a stand-in for all Linux
# distributions. If we find we need more, we should do Docker stuff.
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: tree-grepper
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- run: nix-build
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v31
- uses: cachix/cachix-action@v16
with:
name: tree-grepper
skipPush: true
- run: nix-shell --pure --run 'cargo fmt --check'