Skip to content

Testing

Testing #1

Workflow file for this run

on:
pull_request:
push:
branches:
- main
name: Test Lingo
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- name: Setuo
uses: ./.github/actions/environment
- name: Integration Test
run: |
# copying Lingo.toml
cp test/Lingo-Cpp.toml ./lingua-franca/test/Lingo.toml
cd ./lingua-franca/test/Cpp
../../../target/release/lingo build
shell: bash