Setup github actions to run integration tests #2
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: "CI" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build-test: | |
name: "Build & test" | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📥 Checkout repository | |
uses: actions/checkout@v4 | |
- name: ❄ Prepare nix | |
uses: cachix/install-nix-action@v26 | |
with: | |
extra_nix_config: | | |
accept-flake-config = true | |
log-lines = 1000 | |
- name: Prepare | |
run: | | |
nix develop --command bash -c "cabal update" | |
- name: Build | |
run: | | |
nix develop --command bash -c "cabal build" | |
- name: Test | |
# NOTE: The onlyCabal shell does not contain cardano-node | |
run: | | |
nix develop .#onlyCabal --command bash -c "cabal test" |