simplify segment properties, no more volatile properties #212
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
name: Build Jayo on every push | |
on: [push] | |
jobs: | |
Gradle-Build: | |
strategy: | |
matrix: | |
distribution: [ 'temurin', 'corretto' ] | |
java: [ '17', '21', '22' ] # replace '22' with '23' when JMH & Kotlin support it | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java }} | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Execute Gradle build, including slow tests | |
run: ./gradlew build -PisCI |