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

20 lines
375 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
apk add build-base git kyua atf
- name: Checkout
uses: actions/checkout@v2
- name: Build and run tests
run: make check