diff options
| author | John J. Camilleri <john@digitalgrammars.com> | 2020-11-09 21:59:05 +0100 |
|---|---|---|
| committer | John J. Camilleri <john@digitalgrammars.com> | 2020-11-09 21:59:05 +0100 |
| commit | 359f1509fa70fc572351f425451360b2ec5336bb (patch) | |
| tree | 75239d009ba99068c1a589ed826d425e8288562f /.github | |
| parent | b1b3bc3360c9b10ad6767ba13063f86757ab3162 (diff) | |
Blurt out cabal version in both action and build script
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build-macos-package.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/build-macos-package.yml b/.github/workflows/build-macos-package.yml index 6d11b8a1c..f4f0e4edb 100644 --- a/.github/workflows/build-macos-package.yml +++ b/.github/workflows/build-macos-package.yml @@ -9,8 +9,8 @@ jobs: strategy: matrix: os: [macOS-latest] - cabal: ["2.4"] ghc: ["8.6.5"] + cabal: ["2.4"] steps: - uses: actions/checkout@v2 @@ -22,6 +22,10 @@ jobs: ghc-version: ${{ matrix.ghc }} cabal-version: ${{ matrix.cabal }} + - name: Check cabal version + run: | + cabal --version + - name: Install build tools run: | brew install \ |
