forked from awakesecurity/proto3-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (31 loc) · 885 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: ci
on:
push:
branches:
- master
pull_request:
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
compiler:
- ghc8107
- ghc902
- ghc924
- ghc946
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
name: Checkout
- uses: cachix/install-nix-action@v22
name: Install Nix
- uses: cachix/cachix-action@v12
name: Set up Cachix
with:
name: awakesecurity
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix-build --attr proto3-suite --argstr compiler "${{ matrix.compiler }}" --arg enableDhall true --arg enableLargeRecords false
- run: nix-build --attr proto3-suite --argstr compiler "${{ matrix.compiler }}" --arg enableDhall true --arg enableLargeRecords true