update readme #2

Merged
numbers merged 15 commits from test-build into main 2026-01-24 13:05:13 -06:00
2 changed files with 8 additions and 2 deletions
Showing only changes of commit 07b6322d14 - Show all commits
+2 -2
View File
@@ -15,5 +15,5 @@ jobs:
# cache-dependency-path: | # optional # cache-dependency-path: | # optional
# sub-project/*.gradle* # sub-project/*.gradle*
# sub-project/**/gradle-wrapper.properties # sub-project/**/gradle-wrapper.properties
- run: ./gradlew build --no-daemon # - run: ./gradlew build --no-daemon
- run: ./gradlew publishAllPublicationsToGiteaRepository -PgradleKey="${{ secrets.GRADLE_KEY }}" --configuration-cache - run: ./gradlew publishAllPublicationsToGiteaRepository -PgradleKey="${{ secrets.GRADLE_KEY }}" --no-daemon
@@ -1,5 +1,6 @@
package com.softwaresmyth.functions; package com.softwaresmyth.functions;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import java.util.function.BiConsumer; import java.util.function.BiConsumer;
@@ -18,4 +19,9 @@ class NoopTest {
toTest.accept(0.0, false); toTest.accept(0.0, false);
} }
@Test
void TestThreeArg() {
Assertions.fail("Not yet implemented");
}
} }