Update README.md #7
Workflow file for this run
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
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created | |
# For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path | |
name: Continuous project validation | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '.github/**' | |
- 'travis/**' | |
workflow_dispatch: # For manual trigger | |
jobs: | |
compiling-gama: | |
name: Compiling GAMA | |
uses: ./.github/workflows/travis-build.yaml | |
with: | |
get_testing_compiled_archives: true | |
get_all_archives_for_release: false | |
testing-gama: | |
name: Testing built GAMA | |
needs: compiling-gama | |
uses: ./.github/workflows/travis-build-test.yaml |