Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,25 @@ jobs:
cargo +nightly update -Z minimal-versions
git diff --exit-code Cargo-minimal.lock

nix-flake-check:
name: Check Nix flake
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install Nix
uses: cachix/install-nix-action@v31

- name: Check flake
run: nix flake check

- name: Set Cargo.lock
run: cp Cargo-minimal.lock Cargo.lock

- name: Build with default dev shell
run: nix develop --command cargo build --all-features --locked

build:
name: Build and Test
runs-on: ubuntu-latest
Expand Down
Loading