opengnsys_ipxe/.github/workflows/ccpp.yml

18 lines
260 B
YAML

name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: make
run: cd src && make
- name: make check
run: make check
- name: make distcheck
run: make distcheck