Browse Source

Github actions simple cpp build

sbg
Daniel Agar 5 years ago committed by GitHub
parent
commit
6277710fac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      .github/workflows/ccpp.yml

13
.github/workflows/ccpp.yml

@ -0,0 +1,13 @@ @@ -0,0 +1,13 @@
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container: px4io/px4-dev-base-bionic:2019-07-29
steps:
- uses: actions/checkout@v1
- name: make
run: make
Loading…
Cancel
Save