Test GitHub action to build and test code

This commit is contained in:
Joachim Nilsson 2019-12-14 09:36:03 +01:00 committed by GitHub
parent 48bfe6edf4
commit 65abc37809
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
.github/workflows/ccpp.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: ./configure
- name: build
run: make
- name: clang-tidy check
uses: muxee/clang-tidy-action@0.0.1-rc1
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@v1.1