1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-13 19:40:20 +03:00

Create ccpp.yml

This commit is contained in:
Bertrand Songis 2019-12-03 08:21:29 +01:00 committed by GitHub
parent 4817a1404e
commit 0c62de7e7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
.github/workflows/ccpp.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: CMake
run: cmake .
- name: make
run: make
- name: make tests
run: make tests