Close resource streams for mixin configs. #314
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java: [21-jdk] | |
| runs-on: ubuntu-24.04 | |
| container: | |
| image: eclipse-temurin:${{ matrix.java }} | |
| options: --user root | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: gradle/actions/wrapper-validation@v4 | |
| - run: ./gradlew build publishToMavenLocal --stacktrace --warning-mode fail |