Skip to content

Test installation in CI #191

Test installation in CI

Test installation in CI #191

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
os:
- ubuntu-20.04
#- ubuntu-22.04
# We can test on a Matrix of Ubuntu versions
# But Nix does get us pretty good reproducibility
# So we will test just one in CI.
# More full tests can be run by docker_os_matrix.py
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Nix
uses: cachix/install-nix-action@v27
with:
extra_nix_config: |
experimental-features = nix-command flakes
- name: Test existence of secrets
run: |

Check failure on line 35 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 35, Col: 12): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
echo -e 'CACHIX_AUTH_TOKEN length: '
echo ${{ secrets.'CACHIX_AUTH_TOKEN }} | wc -c
- uses: cachix/cachix-action@v15
with:
name: charmonium
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Run Just on-push stuff in development shell
run: nix develop --command just on-push