Provision dashboards #161
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
jobs: | |
check: | |
name: Check flake | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v14 | |
with: | |
extra-conf: allow-import-from-derivation = true | |
- name: Setup Attic cache | |
uses: ryanccn/[email protected] | |
with: | |
cache: e10 | |
endpoint: https://cache.e10.camp | |
token: ${{ secrets.ATTIC_TOKEN }} | |
- name: Use Cachix store | |
uses: cachix/cachix-action@v15 | |
with: | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
installCommand: nix profile install github:NixOS/nixpkgs/nixpkgs-unstable#cachix | |
name: e10 | |
- run: 'nix flake check --impure --accept-flake-config --show-trace | |
' | |
name: Check | |
'on': | |
push: {} |