mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 10:02:03 +03:00
25 lines
431 B
YAML
25 lines
431 B
YAML
|
name: Ubuntu CI
|
||
|
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 install -y chezscheme
|
||
|
- name: Build from bootstrap
|
||
|
run: make bootstrap SCHEME=scheme
|
||
|
shell: bash
|
||
|
|