2020-07-19 12:03:08 +00:00
|
|
|
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
|
|
|
|
|
2020-08-24 09:11:45 +00:00
|
|
|
- name: Build
|
|
|
|
run: make
|
|
|
|
|
|
|
|
- name: Run tests
|
2020-07-19 12:03:08 +00:00
|
|
|
run: make check
|