Skip to content

Commit

Permalink
Add caching to HLS check
Browse files Browse the repository at this point in the history
  • Loading branch information
palas committed Jun 25, 2024
1 parent 05d4c08 commit 20f12c2
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions .github/workflows/hls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,32 @@ jobs:
test-hls-works:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check out repo
uses: actions/checkout@v4
- name: Install Nix with good defaults
uses: input-output-hk/install-nix-action@v20
with:
extra_nix_config: |
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=
substituters = https://cache.iog.io/ https://cache.nixos.org/
nix_path: nixpkgs=channel:nixos-unstable
- uses: cachix/install-nix-action@v18
nix_path: nixpkgs=channel:nixos-unstable
- name: Cachix install Nix
uses: cachix/install-nix-action@v18
with:
nix_path: nixpkgs=channel:nixos-unstable
# Make the Nix environment available to next steps
- uses: rrbutani/use-nix-shell-action@v1
- run: cabal update; haskell-language-server
- name: Open nix environment
uses: rrbutani/use-nix-shell-action@v1
- name: Update dependencies
run: cabal update; cabal freeze
- name: Obtain GHC version
id: ghc
run: VERSION=$(ghc --version | grep -oE '[^ ]+$')
- name: Cache hie-bios folder
uses: actions/cache@v3
with:
path: |
~/.cache/hie-bios
key: ${{ runner.os }}-${{ ghc.version }}-${{ hashFiles('**/*.cabal', '**/cabal.project', '**/cabal.project.freeze') }}
restore-key: ${{ runner.os }}-${{ ghc.version }}
- name: Test HLS works
run: haskell-language-server

0 comments on commit 20f12c2

Please sign in to comment.