https://modrinth.com/mod/breakfree

feat: try tangled.sh workflows

+20
+20
.tangled/workflows/build.yml
··· 1 + # Automatically build the project and run any configured tests for every push 2 + # and submitted pull request. This can help catch issues that only occur on 3 + # certain platforms or Java versions, and provides a first line of defence 4 + # against bad commits. 5 + 6 + engine: "nixery" 7 + 8 + when: 9 + - event: ["push", "pull_request"] 10 + branch: ["main"] 11 + 12 + dependencies: 13 + nixpkgs: 14 + - jdk # This is JDK 21 according to nixpkgs 15 + 16 + steps: 17 + - name: "Make Gradle wrapper executable" 18 + command: chmod +x ./gradlew 19 + - name: "Build" 20 + command: ./gradlew build