diff options
| author | John MacFarlane <[email protected]> | 2023-03-16 08:41:54 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-03-16 08:49:28 -0700 |
| commit | 3c1fe09b1fe18adafd8a5dd9f56a7d522c6c9b81 (patch) | |
| tree | a39a2b5923ddef2b8fc64a55c7233438f55b5e16 /.github/workflows | |
| parent | b5b9edf5645277c11fd9d3a9300c74a7f08434f5 (diff) | |
nightly: install ghc 9.4.4 for linux.
Otherwise it will use 9.6.1 which doesn't yet work.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/nightly.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9e886f9e5..ba4a60dfb 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -15,6 +15,10 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Install ghc + run: | + ghcup install ghc --set 9.4.4 + - name: Install dependencies run: | ghc --version |
