This repository has been archived by the owner on Sep 22, 2024. It is now read-only.
Release version 0.8.0 #303
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
# Main workflow for testing the Lingua Franca compiler. | |
name: CI | |
on: | |
# Trigger this workflow on push events, but only on master. | |
push: | |
branches: | |
- main | |
# Trigger this workflow also on pull_request events, but ignore the 'nightly' branch. | |
pull_request: | |
branches-ignore: | |
- 'nightly' | |
concurrency: | |
group: ci-${{ github.ref }}-${{ github.event_path }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
# Run the Maven build. | |
build: | |
uses: ./.github/workflows/build.yml | |
with: | |
upload-artifacts: false | |
# Run tests for Eclipse. | |
eclipse-tests: | |
uses: ./.github/workflows/eclipse-tests.yml |