Support ghc 9.10 #73
Workflow file for this run
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: Haskell CI using Bazel | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
types: [opened, reopened, synchronize, labeled] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install deps | |
run: | | |
sudo apt-get install -y build-essential libffi-dev libgmp-dev libtinfo5 libtinfo-dev python3 | |
curl -L "https://github.com/bazelbuild/bazelisk/releases/download/v1.17.0/bazelisk-linux-amd64" -o bazel | |
chmod +x bazel | |
- name: run bazel | |
run: | | |
./bazel build :candid |