From 51a95294e74e16c470c3cde21f27a09f88927fd2 Mon Sep 17 00:00:00 2001 From: Pablo Lamela Date: Fri, 21 Jun 2024 18:35:46 +0200 Subject: [PATCH] Add Haskell Language Server check to CI --- .github/workflows/hls.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/hls.yml diff --git a/.github/workflows/hls.yml b/.github/workflows/hls.yml new file mode 100644 index 0000000000..7f649234c6 --- /dev/null +++ b/.github/workflows/hls.yml @@ -0,0 +1,17 @@ +name: "Haskell Language Server works" +on: + pull_request: + push: + +permissions: + contents: read + +jobs: + test-nix-build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c + - uses: cachix/install-nix-action@daddc62a2e67d1decb56e028c9fa68344b9b7c2a + with: + nix_path: nixpkgs=channel:nixos-23.11 + - run: nix develop --command bash -c "haskell-language-server"