Skip to content

Commit d06db5a

Browse files
authored
Merge pull request #18 from lehins/fix-coveralls
Make casing consistent and ensure coveralls are uploaded
2 parents 643e5fb + 5d2d7f0 commit d06db5a

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

.github/workflows/haskell.yml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- name: Windows Cache
8888
id: cache-windows
8989
uses: actions/cache@v4
90-
if: matrix.os == 'windows-latest'
90+
if: matrix.os == 'Windows-latest'
9191
with:
9292
path: |
9393
C:\\Users\\RUNNER~1\\AppData\\Local\\Programs\\stack
@@ -108,7 +108,7 @@ jobs:
108108
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
109109
run: |
110110
set -ex
111-
if [ "${{ matrix.os }}.${{ matrix.resolver }}" == "ubuntu-latest.lts-21" ] && [ -n "${COVERALLS_REPO_TOKEN}" ]; then
111+
if [ "${{ matrix.os }}.${{ matrix.resolver }}" == "Ubuntu-latest.lts-21" ] && [ -n "${COVERALLS_REPO_TOKEN}" ]; then
112112
stack $STACK_ARGS test --coverage
113113
stack $STACK_ARGS hpc report --all
114114
curl -L https://github.com/rubik/stack-hpc-coveralls/releases/download/v0.0.7.0/shc-Linux-X64.tar.bz2 | tar xj shc
@@ -124,31 +124,31 @@ jobs:
124124
fail-fast: false
125125
matrix:
126126
include:
127-
- { cabal: "3.14", os: ubuntu-latest, ghc: "8.4.4" }
128-
- { cabal: "3.14", os: ubuntu-latest, ghc: "8.6.5" }
129-
- { cabal: "3.14", os: ubuntu-latest, ghc: "8.8.4" }
130-
- { cabal: "3.14", os: ubuntu-latest, ghc: "8.10.7" }
131-
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.0.2" }
132-
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.2.8" }
133-
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.4.8" }
134-
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.6.6" }
135-
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.8.2" }
136-
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.10.1" }
137-
- { cabal: "3.14", os: ubuntu-latest, ghc: "9.12.1" }
138-
- { cabal: "3.14", os: windows-latest, ghc: "9.0.2" }
139-
- { cabal: "3.14", os: windows-latest, ghc: "9.2.8" }
140-
- { cabal: "3.14", os: windows-latest, ghc: "9.4.8" }
141-
- { cabal: "3.14", os: windows-latest, ghc: "9.6.6" }
142-
- { cabal: "3.14", os: windows-latest, ghc: "9.8.2" }
143-
- { cabal: "3.14", os: windows-latest, ghc: "9.10.1" }
144-
- { cabal: "3.14", os: windows-latest, ghc: "9.12.1" }
145-
- { cabal: "3.14", os: macOS-13, ghc: "9.0.2" }
146-
- { cabal: "3.14", os: macOS-latest, ghc: "9.2.8" }
147-
- { cabal: "3.14", os: macOS-latest, ghc: "9.4.8" }
148-
- { cabal: "3.14", os: macOS-latest, ghc: "9.6.6" }
149-
- { cabal: "3.14", os: macOS-latest, ghc: "9.8.2" }
150-
- { cabal: "3.14", os: macOS-latest, ghc: "9.10.1" }
151-
- { cabal: "3.14", os: macOS-latest, ghc: "9.12.1" }
127+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "8.4.4" }
128+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "8.6.5" }
129+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "8.8.4" }
130+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "8.10.7" }
131+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "9.0.2" }
132+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "9.2.8" }
133+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "9.4.8" }
134+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "9.6.6" }
135+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "9.8.2" }
136+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "9.10.1" }
137+
- { cabal: "3.14", os: Ubuntu-latest, ghc: "9.12.1" }
138+
- { cabal: "3.14", os: Windows-latest, ghc: "9.0.2" }
139+
- { cabal: "3.14", os: Windows-latest, ghc: "9.2.8" }
140+
- { cabal: "3.14", os: Windows-latest, ghc: "9.4.8" }
141+
- { cabal: "3.14", os: Windows-latest, ghc: "9.6.6" }
142+
- { cabal: "3.14", os: Windows-latest, ghc: "9.8.2" }
143+
- { cabal: "3.14", os: Windows-latest, ghc: "9.10.1" }
144+
- { cabal: "3.14", os: Windows-latest, ghc: "9.12.1" }
145+
- { cabal: "3.14", os: MacOS-13, ghc: "9.0.2" }
146+
- { cabal: "3.14", os: MacOS-latest, ghc: "9.2.8" }
147+
- { cabal: "3.14", os: MacOS-latest, ghc: "9.4.8" }
148+
- { cabal: "3.14", os: MacOS-latest, ghc: "9.6.6" }
149+
- { cabal: "3.14", os: MacOS-latest, ghc: "9.8.2" }
150+
- { cabal: "3.14", os: MacOS-latest, ghc: "9.10.1" }
151+
- { cabal: "3.14", os: MacOS-latest, ghc: "9.12.1" }
152152

153153
env:
154154
cache-version: v0 # bump up this version to invalidate currently stored cache

0 commit comments

Comments
 (0)