mirror of
https://github.com/AdrianKuta/Tree-Data-Structure.git
synced 2025-11-01 09:23:40 +01:00
- Added JS (IR) targets (`browser` and `nodejs`) to the Kotlin Multiplatform configuration for publishing.
23 lines
469 B
YAML
23 lines
469 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches-ignore: [master]
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build:
|
|
name: Run unit tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
- name: Set up JDK 21
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: '21'
|
|
|
|
# Builds the release artifacts of the library
|
|
- name: Test
|
|
run: ./gradlew cleanJvmTest jvmTest |