ifupdown-ng/.github/workflows/build.yml

26 lines
468 B
YAML
Raw Normal View History

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
2020-10-24 14:43:51 +00:00
apk add build-base git kyua atf scdoc
2020-07-19 12:03:08 +00:00
- name: Checkout
uses: actions/checkout@v2
2020-08-24 09:11:45 +00:00
- name: Build
run: make
2020-10-24 14:42:26 +00:00
- name: Build documentation
run: make docs
2020-08-24 09:11:45 +00:00
- name: Run tests
2020-07-19 12:03:08 +00:00
run: make check