Proof Replay #14
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
name: Broad Release Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main", "master"] | |
schedule: | |
- cron: '0 5 * * 1' # every monday morning | |
permissions: | |
checks: write | |
jobs: | |
unit-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
java: [8,11,17,21] | |
continue-on-error: false | |
runs-on: ${{ matrix.os }} | |
env: | |
GH_TOKEN: ${{ github.token }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'corretto' | |
- name: Build with Gradle | |
uses: gradle/[email protected] | |
with: | |
arguments: --continue test | |
- name: Verify with KeY | |
uses: gradle/[email protected] | |
with: | |
arguments: --continue checkAll | |
- name: Upload test results | |
uses: actions/[email protected] | |
if: success() || failure() | |
with: | |
name: test-results-${{ matrix.os }} | |
path: | | |
**/build/test-results/*/*.xml | |
**/build/reports/ | |
!**/jacocoTestReport.xml |