Idris2/.github/workflows/ci-ubuntu-racket.yml
2020-06-18 16:00:26 +02:00

26 lines
455 B
YAML

name: Ubuntu Racket
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y racket
- name: Build from bootstrap
run: make bootstrap-racket
shell: bash