Interpolate also partial hit which may be nice if the data is on BC o… #195
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 build and push to cache" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- devel | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v27 | |
with: | |
nix_path: nixpkgs=channel:nixos-24.11 | |
- uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: elmerfem | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: nix build | |
run: | | |
nix build -L | |
nix build .#gui -L | |
nix build .#full -L |