From 65abc3780998e45cd9c39793e1d328a1ae8a8d8f Mon Sep 17 00:00:00 2001 From: Joachim Nilsson Date: Sat, 14 Dec 2019 09:36:03 +0100 Subject: [PATCH] Test GitHub action to build and test code --- .github/workflows/ccpp.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ccpp.yml diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 0000000..93da4ad --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -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