mirror of
https://github.com/AdrianKuta/Tree-Data-Structure.git
synced 2026-06-19 19:00:14 +02:00
- Commit binary-compatibility-validator .api baselines for core + both modules. - Replace JVM-only CI with a matrix: Ubuntu runs JVM/JS(node)/Wasm(node)/Native + apiCheck; macOS runs the iOS simulator tests. - README: install + usage for tree-structure-serialization and -coroutines. - Update kotlin-js-store/yarn.lock for the new modules' JS test deps. Verified locally: JVM, JS(node), Wasm(node) and iOS-simulator tests pass for core + both modules; native compiles & links (exec runs on the Linux CI runner).
32 lines
754 B
YAML
32 lines
754 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches-ignore: [master]
|
|
workflow_call:
|
|
|
|
jobs:
|
|
test:
|
|
name: ${{ matrix.name }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- name: JVM / JS / Wasm / Native + API check
|
|
os: ubuntu-latest
|
|
tasks: jvmTest jsNodeTest wasmJsNodeTest nativeTest apiCheck
|
|
- name: iOS
|
|
os: macos-latest
|
|
tasks: iosSimulatorArm64Test
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
- name: Set up JDK 21
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: '21'
|
|
- name: Test
|
|
run: ./gradlew ${{ matrix.tasks }} --console=plain
|