Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
aartiPl committed Jul 15, 2023
1 parent 83cb5b3 commit 44f1838
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Tests
on:
- push
- workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
steps:
# https://github.com/marketplace/actions/checkout
- name: CHECKOUT REPOSITORY
uses: actions/checkout@v2
# https://github.com/marketplace/actions/setup-java-jdk
- name: SETUP JAVA JDK
uses: actions/setup-java@v2.3.1
with:
java-version: 11
distribution: 'zulu'
# https://github.com/marketplace/actions/gradle-build-action
- name: BUILD
uses: gradle/gradle-build-action@v2.4.2
with:
arguments: build
7 changes: 2 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ val kotlinVersion: String = "1.8.22"
plugins {
kotlin("jvm") version "1.8.22"
id("com.adarshr.test-logger") version "3.2.0"
`java-library`
`maven-publish`
signing
idea
}

group = "net.igsoft"
version = "0.5-SNAPSHOT"
version = "0.5.0-SNAPSHOT"

repositories {
mavenCentral()
Expand Down Expand Up @@ -92,15 +93,11 @@ dependencies {

implementation("org.apache.commons:commons-lang3:3.12.0")

implementation("org.slf4j:slf4j-nop:2.0.5")

testImplementation("org.junit.platform:junit-platform-suite-engine:1.9.0")
testImplementation("org.junit.platform:junit-platform-suite-api:1.9.0")
testImplementation("org.junit.platform:junit-platform-suite-commons:1.9.0")
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.9.0")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.0")
testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.25")
testImplementation("io.mockk:mockk:1.13.2")

testImplementation(kotlin("script-runtime"))
}

0 comments on commit 44f1838

Please sign in to comment.