Revert changes to CMake in previous commit #9
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: "CI" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
ci: | |
name: Build and test template | |
runs-on: ubuntu-24.04 | |
env: | |
REACTOR_UC_PATH: ${{ github.workspace }}/reactor-uc | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Checkout reactor-uc | |
uses: actions/checkout@v3 | |
with: | |
repository: lf-lang/reactor-uc | |
path: reactor-uc | |
submodules: recursive | |
- name: Install Pico dependencies | |
uses: ./reactor-uc/.github/actions/pico | |
- name: Install LFC dependencies | |
uses: ./reactor-uc/.github/actions/lingua-franca | |
- name: Run tests | |
run: ./.github/scripts/run-all.sh |