Create github actions workflow

This commit is contained in:
Syoyo Fujita 2020-05-29 20:57:39 +09:00 committed by GitHub
parent 35d664e417
commit 73e73bf3c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.github/workflows/c-cpp.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: C/C++ CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: cmake
run: |
mkdir build
cd build
cmake ..
make