name: main.windows.temurin.current on: push: branches: [ develop, feature/*, release/* ] pull_request: branches: [ develop ] jobs: build: runs-on: windows-latest steps: - uses: actions/checkout@v4 - name: JDK uses: actions/setup-java@v4 with: java-version: 22 distribution: 'temurin' - name: Build run: mvn --errors clean verify site - name: Upload test logs uses: actions/upload-artifact@v4 if: always() with: name: test-logs path: ./com.io7m.jspearmint.tests/target/surefire-reports