Add dcp_fmu example #36
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: OpenMCx build | |
on: [push] | |
jobs: | |
Build-OpenMCx: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout OpenMCx | |
uses: actions/checkout@v2 | |
- name: Build OpenMCx | |
uses: ./.github/actions/script-action | |
with: | |
entrypoint: /usr/bin/bash | |
args: ./build.sh | |
- name: Test OpenMCx | |
uses: ./.github/actions/script-action | |
with: | |
entrypoint: /usr/bin/python | |
args: run_tests.py install/openmcx examples |