This repository was archived by the owner on Jun 5, 2025. It is now read-only.
add hint for cooklang #15
This file contains hidden or 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: Haskell CI | |
on: [push] | |
jobs: | |
build_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v6 | |
- name: Build with Nix | |
run: nix-build | |
- name: Test | |
run: nix-shell --run "cabal test" |