A Github Action for installing the Lingua Franca toolchain, including lfc
and lingo
.
The Github Action only supports workflows running on Linux and macOS hosts.
name: CI
on: [push, pull_request]
jobs:
test:
name: lingo build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: lf-lang/[email protected]
with:
lfc-version: stable
lingo-version: stable
- run: lingo build
For latest nightly release of lfc and v0.2.0 of lingo:
- uses: lf-lang/[email protected]
with:
lfc-version: nightly
lingo-version: 0.2.0
lfc-version
: Which version of LFC to install. Currently only support fornightly
orstable
lingo-version
: Which version of lingo to install. Eitherstable
or a version number.