add github workflow and remove makefiles #6
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: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
env: | |
SCHEME: scheme | |
jobs: | |
ubuntu-chez: | |
runs-on: ubuntu-latest | |
env: | |
PACK_DIR: /root/.pack | |
strategy: | |
fail-fast: false | |
container: ghcr.io/stefan-hoeck/idris2-pack:latest | |
steps: | |
- name: Checkout idris2-tls | |
uses: actions/checkout@v2 | |
- name: Build package | |
run: pack --no-prompt install http | |
- name: Test package | |
run: pack --no-prompt run http-test |