mirror of
https://github.com/AdrianKuta/Tree-Data-Structure.git
synced 2025-04-19 06:59:03 +02:00
* 10: Convert library into Kotlin Multiplatform library * 10: Setup CI * 10: Setup CI * 10: Test CI * 10: Test CI * 10: Test CI * 10: Test CI * 10: Test CI * 10: Test CI * 10: Test CI
20 lines
401 B
YAML
20 lines
401 B
YAML
name: Test
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
name: Run unit tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
distribution: adopt
|
|
java-version: 11
|
|
|
|
# Builds the release artifacts of the library
|
|
- name: Test
|
|
run: ./gradlew test |