build(deps): bump serde_json from 1.0.135 to 1.0.137 #920
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@v30 | |
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 |