implement a CI attempt
This commit is contained in:
parent
0c3e4c71cf
commit
c6ef6d1c03
1 changed files with 19 additions and 0 deletions
19
.github/workflows/build.yml
vendored
Normal file
19
.github/workflows/build.yml
vendored
Normal 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
|
Loading…
Reference in a new issue