Compare commits

..

2 commits

Author SHA1 Message Date
f3de70d1d8
Fix main class name
All checks were successful
test / test (push) Successful in 40s
test / caching (push) Successful in 1m12s
2024-08-19 20:51:35 +02:00
5e186ec6d4
[no ci] Force gradle to run in no daemon mode 2024-08-19 20:51:27 +02:00
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ jobs:
restore-keys: | restore-keys: |
gradle-${{ runner.os }}- gradle-${{ runner.os }}-
- name: Compile and run example - name: Compile and run example
run: ./gradlew run run: ./gradlew --no-daemon run
- name: Save Gradle cache - name: Save Gradle cache
uses: actions/cache/save@v4 uses: actions/cache/save@v4
with: with:

View file

@ -12,5 +12,5 @@ jar {
} }
application { application {
mainClass.set("helloworld.Man") mainClass.set("helloworld.Main")
} }