Continuous Integration Workflow #2991
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: Continuous Integration Workflow | ||
| on: | ||
| pull_request: | ||
| push: | ||
| # This workflow runs every weekday at 15:00 UTC (8AM PDT) | ||
| schedule: | ||
| - cron: '00 15 * * 1-5' | ||
| jobs: | ||
| Static_Analysis: | ||
|
Check failure on line 11 in .github/workflows/ci-workflow.yml
|
||
| uses: ./.github/workflows/static-analysis.yml | ||
| Build: | ||
| strategy: | ||
| fail-fast: false # TODO: Set to true once CI is stable | ||
| matrix: | ||
| version: [ 8, 11, 17 ] | ||
| distribution: [ corretto, temurin ] # TODO: Add OpenJDK | ||
| uses: ./.github/workflows/build.yml | ||
| secrets: inherit | ||
| with: | ||
| version: ${{ matrix.version }} | ||
| distribution: ${{ matrix.distribution }} | ||