[ compat ] adjust to upstream changes #87
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: Build | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- '**' | |
pull_request: | |
branches: | |
- main | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
name: Build the lib with Idris2 HEAD | |
runs-on: ubuntu-latest | |
env: | |
PACK_DIR: /root/.pack | |
strategy: | |
fail-fast: false | |
container: ghcr.io/stefan-hoeck/idris2-pack:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build lib | |
run: pack typecheck refined | |
- name: Build docs | |
run: pack typecheck refined-docs | |
- name: Build json | |
run: pack typecheck refined-json | |
- name: Test json | |
run: pack test refined-json | |
- name: Build tsv | |
run: pack typecheck refined-tsv | |
- name: Test tsv | |
run: pack test refined-tsv |