Use function arg types in typechecking #21
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: Rebase & test | |
on: | |
push: | |
branches: | |
- trunk | |
pull_request: | |
jobs: | |
nix-flake-check: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Rebase on trunk | |
if: ${{ !contains(github.ref, 'trunk') }} | |
run: | | |
git pull --rebase origin trunk | |
- name: Install Nix | |
uses: cachix/install-nix-action@v22 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
extra_nix_config: | | |
experimental-feature = nix-command flakes | |
accept-flake-config = true | |
- name: Run all checks | |
run: | | |
nix flake check --print-build-logs |