Update dependencies and documentation #225
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: "CI" | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v27 | |
with: | |
# DESIGN: matching current in NixOS 24.05 | |
install_url: https://releases.nixos.org/nix/nix-2.18.4/install | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: shajra | |
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- run: cat /etc/nix/nix.conf | |
- run: cat ~/.config/nix/nix.conf | |
- run: nix --print-build-logs build --print-out-paths .#ci |