Update test baseline to reflect support of fp16 #69
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: Nix CI | |
# Big thanks to https://markkarpov.com/post/github-actions-for-haskell-ci.html | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
nix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: cachix/install-nix-action@v12 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: actions/checkout@v2 | |
- run: nix-build | |
- run: nix-build release.nix -A tarball | |
- run: nix-build release.nix -A sdistTest | |
- run: nix-build release.nix -A docs |