diff --git a/.github/workflows/build-run-app.yml b/.github/workflows/build-run-app.yml new file mode 100644 index 0000000..da9cfed --- /dev/null +++ b/.github/workflows/build-run-app.yml @@ -0,0 +1,13 @@ +name: Build and Run + +on: + push: + pull_request: + +jobs: + build-run: + name: Build and run with startup msg verification + uses: nasa/cFS/.github/workflows/build-run-app.yml@main + with: + startup-string: "Sample App Initialized" + is_framework_app: true diff --git a/.github/workflows/unit-test-coverage.yml b/.github/workflows/unit-test-coverage.yml new file mode 100644 index 0000000..b43a68c --- /dev/null +++ b/.github/workflows/unit-test-coverage.yml @@ -0,0 +1,12 @@ +name: Unit Test and Coverage + +on: + push: + pull_request: + +jobs: + unit-test-coverage: + name: Run unit test and coverage + uses: nasa/cFS/.github/workflows/unit-test-coverage.yml@main + with: + is_framework_app: true