Main workflow #367 triggered by ABBDVD on refs/heads/main #367
This file contains hidden or 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: '# Main' | |
| run-name: 'Main workflow #${{ github.run_number }} triggered by ${{ github.actor }} on ${{ github.ref }}' | |
| on: | |
| push: | |
| branches-ignore: | |
| - dependabot/** | |
| workflow_dispatch: | |
| # Prevent running builds for the same branch in parallel | |
| # New workflows will cancel existing workflows… | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # lint: | |
| # name: Lint | |
| # uses: ./.github/workflows/npm-lint.yml | |
| test_maven: | |
| name: Test Maven Build | |
| uses: ./.github/workflows/test-maven.yml | |
| secrets: inherit |