ci: remove hlint check
This commit is contained in:
parent
f6830f0d08
commit
029e2a478f
1 changed files with 5 additions and 9 deletions
14
.github/workflows/ci.yaml
vendored
14
.github/workflows/ci.yaml
vendored
|
@ -18,7 +18,11 @@ jobs:
|
||||||
- name: Cache Nix dependencies
|
- name: Cache Nix dependencies
|
||||||
run: |
|
run: |
|
||||||
nix develop -j 4 -c echo
|
nix develop -j 4 -c echo
|
||||||
- name: Flake checks
|
- name: Build 🔨
|
||||||
|
id: build
|
||||||
|
run: |
|
||||||
|
nix build -j auto -L
|
||||||
|
- name: Flake checks 🧪
|
||||||
run: |
|
run: |
|
||||||
# Because 'nix flake check' is not system-aware
|
# Because 'nix flake check' is not system-aware
|
||||||
# See https://srid.ca/haskell-template/checks
|
# See https://srid.ca/haskell-template/checks
|
||||||
|
@ -27,11 +31,3 @@ jobs:
|
||||||
# Sandbox must be disabled due to HLS,
|
# Sandbox must be disabled due to HLS,
|
||||||
# https://github.com/haskell/haskell-language-server/issues/3128
|
# https://github.com/haskell/haskell-language-server/issues/3128
|
||||||
nix --option sandbox false flake check -L
|
nix --option sandbox false flake check -L
|
||||||
# TODO: Remove after https://github.com/srid/haskell-flake/issues/19
|
|
||||||
- name: Hlint
|
|
||||||
run: |
|
|
||||||
nix develop -j auto -c hlint src
|
|
||||||
- name: Build
|
|
||||||
id: build
|
|
||||||
run: |
|
|
||||||
nix build -j auto -L
|
|
||||||
|
|
Loading…
Reference in a new issue