diff options
Diffstat (limited to '.github/workflows/c-cpp-dev.yml')
| -rw-r--r-- | .github/workflows/c-cpp-dev.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp-dev.yml b/.github/workflows/c-cpp-dev.yml new file mode 100644 index 0000000..e2ba91f --- /dev/null +++ b/.github/workflows/c-cpp-dev.yml @@ -0,0 +1,19 @@ +name: C/C++ CI (Develop,Clang++) + +on: + push: + branches: [ "develop" ] + pull_request: + branches: [ "develop" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Install Packages + run: sudo apt update && sudo apt install build-essential + - name: Build NeBuild + run: make build-nebuild
\ No newline at end of file |
