diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index c729041..b09299f 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -15,5 +15,5 @@ jobs: # cache-dependency-path: | # optional # sub-project/*.gradle* # sub-project/**/gradle-wrapper.properties - - run: ./gradlew build --no-daemon - - run: ./gradlew publishAllPublicationsToGiteaRepository -PgradleKey="${{ secrets.GRADLE_KEY }}" --configuration-cache \ No newline at end of file +# - run: ./gradlew build --no-daemon + - run: ./gradlew publishAllPublicationsToGiteaRepository -PgradleKey="${{ secrets.GRADLE_KEY }}" --no-daemon \ No newline at end of file diff --git a/src/test/java/com/softwaresmyth/functions/NoopTest.java b/src/test/java/com/softwaresmyth/functions/NoopTest.java index cd58a99..2ab9790 100644 --- a/src/test/java/com/softwaresmyth/functions/NoopTest.java +++ b/src/test/java/com/softwaresmyth/functions/NoopTest.java @@ -1,5 +1,6 @@ package com.softwaresmyth.functions; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import java.util.function.BiConsumer; @@ -18,4 +19,9 @@ class NoopTest { toTest.accept(0.0, false); } + @Test + void TestThreeArg() { + Assertions.fail("Not yet implemented"); + } + } \ No newline at end of file