Provide rudimentary implementations of the remaining SI arithmetic #94
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: test | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- 'trunk' | |
env: | |
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: [macOS-latest, windows-latest, ubuntu-latest] | |
include: | |
- os: macOS-latest | |
job: iosSimulatorArm64Test iosX64Test macosArm64Test macosX64Test tvosSimulatorArm64Test tvosX64Test watchosSimulatorArm64Test watchosX64Test | |
- os: windows-latest | |
job: mingwX64Test | |
- os: ubuntu-latest | |
job: jsTest jvmTest linuxX64Test wasmJsTest | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: 19 | |
- run: ./gradlew ${{matrix.job}} | |
kmp-missing-targets: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: 19 | |
- run: ./gradlew kmpMissingTargets |