Skip to content

CI/GH: pin Nix to v2.13.3 #19

CI/GH: pin Nix to v2.13.3

CI/GH: pin Nix to v2.13.3 #19

Workflow file for this run

name: Build & test
on:
push:
branches:
- master
pull_request:
jobs:
build_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v17
with:
install_url: https://releases.nixos.org/nix/nix-2.13.3/install
extra_nix_config: |
substituters = https://cache.nixos.org https://hydra.iohk.io https://cache.iog.io
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=
system-features = benchmark big-parallel kvm nixos-test
- uses: cachix/cachix-action@v12
with:
name: crypto-venues
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build library
run: nix-build -A crypto-venues.components.library
- name: Build tests
run: nix-build -A crypto-venues.components.tests
- name: Run tests
run: $(nix-build -A crypto-venues.components.tests)/bin/crypto-venues-test
- name: Build executables
run: nix-build -A crypto-venues.components.exes
- name: Test shell
run: nix-shell --run "echo success"