ci: use nix #201
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
name: Test partial eval | |
on: | |
push: | |
branches: | |
- partial_eval | |
pull_request: | |
types: [] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
packages: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: | | |
nix develop github:katrinafyi/pac-nix#ocamlPackages_pac_4_09.asli --accept-flake-config --command {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v25 | |
- uses: cachix/cachix-action@v14 | |
with: { name: pac-nix } | |
- run: echo 'preparing nix shell environment' | |
# just in case we aslp adds new dependencies | |
- uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: 4.09 # must match nix develop's ocaml version! | |
- run: opam install . --deps-only --with-test | |
- run: dune build | |
- run: ./coverage.sh test | |
id: coverage | |
- name: Upload new coverage results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-output-${{ github.run_id }} | |
path: ${{ steps.coverage.outputs.OUTPUT }} |