-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #233, Add build-run-app and unit-test-coverage CI workflows
- Loading branch information
1 parent
ceaf7ab
commit 7b80674
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |