Bump github.com/go-chi/chi/v5 from 5.0.12 to 5.0.14 #171
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 ci | |
on: [push, pull_request] | |
jobs: | |
gotest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install nix | |
uses: nixbuild/nix-quick-install-action@v28 | |
with: | |
nix_conf: experimental-features = nix-command flakes | |
- name: nix build goshrt | |
run: | | |
nix build .#goshrt | |
- name: nix build goshrtc | |
run: | | |
nix build .#goshrtc | |
- name: nix module | |
run: | | |
nix build .#nixosConfigurations.container.config.system.build.toplevel | |
- name: nix flake check | |
run: | | |
nix flake check --no-build |