Add columns Missmatch errors + tests #216
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: "Validate PR" | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
handle-pull-request-to-master: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Fetch repo | |
uses: actions/checkout@v4 | |
- name: Install nix | |
uses: cachix/install-nix-action@v26 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Build tests runner | |
run: nix build .#testing | |
- name: Run tests | |
run: nix run .#testing | |
- name: Build documntation | |
run: nix build .#documentation |