Som devel 20 #182
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ============================================================ | |
# continuous integration setup | |
# ============================================================ | |
# created by Manfred Sorgo | |
name: C/C++ CI | |
on: | |
push: | |
branches: [ "dev_98", "dev_20", "release" ] | |
pull_request: | |
branches: [ "dev_98", "dev_20", "release" ] | |
jobs: | |
buildAndRunAll: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout repository" | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: build and run all | |
run: chmod 755 make/*.sh; make/build.sh -cr | |
- name: check coverage | |
run: make/runGcov.sh | |
# - name: check env | |
# run: make/checkEnv.sh | |