mirror of https://github.com/ipxe/ipxe.git
20 lines
353 B
YAML
20 lines
353 B
YAML
name: C/C++ CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Checkout submodules
|
|
uses: textbook/git-checkout-submodule-action@2.0.0
|
|
- name: make
|
|
run: cd src && make
|
|
# - name: make check
|
|
# run: make check
|
|
# - name: make distcheck
|
|
# run: make distcheck
|