Regenerate Haskell CI #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: large-files | |
on: | |
- push | |
- pull_request | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: haskell-actions/setup@v2 | |
id: setup-haskell-cabal | |
with: | |
ghc-version: 'latest' | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y libbz2-dev | |
- name: Update cabal package database | |
run: cabal update | |
- uses: actions/cache@v4 | |
name: Cache cabal stuff | |
with: | |
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }} | |
key: large-files | |
- name: Test | |
run: htar/test-large-files.sh |