implement a CI attempt

This commit is contained in:
Ariadne Conill 2020-07-19 06:03:08 -06:00
parent 0c3e4c71cf
commit c6ef6d1c03

19
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container:
image: alpine
steps:
- name: Update system and add dependencies
run: |
apk upgrade -Ua
apk add build-base git kyua atf
- name: Checkout
uses: actions/checkout@v2
- name: Build and run tests
run: make check