build(deps): bump serde from 1.0.216 to 1.0.217 (#417) #1049
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 |