add modifyFocus', returning an additional value #108
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: 'push' | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
release: | |
name: 'Test and push to Cachix' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: DeterminateSystems/nix-installer-action@main | |
with: | |
extra-conf: | | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
extra-substituters = https://tek.cachix.org | |
extra-trusted-public-keys = tek.cachix.org-1:+sdc73WFq8aEKnrVv5j/kuhmnW2hQJuqdPJF5SnaCBk= | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: tek | |
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
- name: 'build' | |
env: | |
RIBOSOME_ROOT: ${{ vars.GITHUB_WORKSPACE }} | |
run: nix flake check | |
- name: 'template test' | |
run: nix run .#template-test |