Add CI check on FlightExamples UTs #3
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
name: FlightExamples UTs | |
on: | |
push: | |
branches: [ devel, release/** ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ devel, release/** ] | |
paths-ignore: | |
- 'docs/**' | |
- '**.md' | |
- '.github/actions/spelling/**' | |
- '.github/ISSUE_TEMPLATE/**' | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Examples repo" | |
uses: actions/checkout@v4 | |
- name: "Overlay nasa/fprime@devel" | |
uses: actions/checkout@v4 | |
with: | |
repository: nasa/fprime | |
submodules: true | |
path: ./FlightExamples/lib/fprime | |
- uses: fprime-community/project-builder@main | |
with: | |
run_unit_tests: true | |
build_location: ./FlightExamples | |
fprime_location: ./FlightExamples/lib/fprime |