Test GitHub action to build and test code
This commit is contained in:
parent
48bfe6edf4
commit
65abc37809
19
.github/workflows/ccpp.yml
vendored
Normal file
19
.github/workflows/ccpp.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user