Skip to content

Commit

Permalink
Add Validate Templates (nasa#2387)
Browse files Browse the repository at this point in the history
 - Add validate_templates.yml.
  • Loading branch information
rlcheng committed Oct 17, 2024
1 parent 3c5fd74 commit 304e92c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/validate_templates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: validate_templates-actions
run-name: ${{ github.actor }} running Validate Templates CI actions
on: [push]


jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Checkout F' Repository"
uses: actions/checkout@v4
with:
submodules: true
path: ${{ inputs.fprime_location }}
#- name: "Fprime Venv and Requirements Install"
# run: |
# python3 -m venv ./fprime-venv
# . ./fprime-venv/bin/activate
# pip3 install -r ${{ inputs.fprime_location }}./requirements.txt
- name: "Test boostrap"
run: |
pip install fprime-bootstrap
yes project | fprime-bootstrap
cd project
fprime-util new --deployment
cd deployment
fprime-util generate
fprime-util build

0 comments on commit 304e92c

Please sign in to comment.