build(deps): bump clap_complete from 4.4.3 to 4.4.4 #603
Workflow file for this run
This file contains 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: "Nix Flakes" | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- ci/* | |
- release/* | |
pull_request: | |
paths: | |
- Cargo.lock | |
- Cargo.toml | |
- default.nix | |
- flake.lock | |
- flake.nix | |
- shell.nix | |
jobs: | |
build-nix-flake: | |
name: Build Nix Flake | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v23 | |
with: | |
extra_nix_config: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
- name: Build Nix Flake | |
run: nix build | |
- name: Check Nix Flake | |
run: nix flake check | |
- name: Test Xenon binary | |
run: ./result/bin/xenon version |