build(deps): bump clap_complete from 4.5.39 to 4.5.40 (#414) #1043
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 | |
- ci/* | |
- develop | |
- feat/* | |
- feature/* | |
- hotfix/* | |
- release/* | |
pull_request: | |
paths: | |
- "**/src/**" | |
- ".github/**" | |
- "devshell/**" | |
- "src/**" | |
- Cargo.lock | |
- Cargo.toml | |
- flake.lock | |
- flake.nix | |
- rust-toolchain.toml | |
jobs: | |
build-nix-flake: | |
name: Build Nix Flake | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v16 | |
- uses: DeterminateSystems/magic-nix-cache-action@v8 | |
- name: Build Nix Flake | |
run: nix build | |
- name: Test executable | |
run: | | |
./result/bin/caracal version | |
./result/bin/caracal-daemon version | |
./result/bin/caracal-tui version |