Bump org.json:json from 20250107 to 20250517 #15
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: Java CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| checks: write | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/[email protected] | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| cache: maven | |
| - name: Install dependencies | |
| run: ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V | |
| - name: Run tests and collect coverage | |
| run: ./mvnw -B test | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Test Report | |
| uses: dorny/[email protected] | |
| if: success() || failure() | |
| with: | |
| name: JavaAI Tests | |
| path: 'target/surefire-reports/TEST-*.xml' | |
| reporter: java-junit |