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