Verify Wadray #3
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: Formal verification | |
run-name: Verify Wadray | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Get the only thing that usually is reliable in CI | |
uses: cachix/install-nix-action@v20 | |
with: | |
nix_path: nixpkgs=channel:nixos-23.11 | |
- name: Update dependencies | |
run: nix-shell -p elan --run "lake update" | |
- name: Download mathlib4 cache | |
run: nix-shell -p elan --run "lake exe cache get" | |
- name: Verify the library | |
run: nix-shell -p elan --run "lake build" |