diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml deleted file mode 100644 index 6c60acab67..0000000000 --- a/.github/workflows/maven.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: CI - -on: - push: - branches: - - master - pull_request: - branches: - - master - -permissions: - contents: read - -jobs: - build: - name: Build on JDK ${{ matrix.java }} and ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - java: [17] - os: [ubuntu-latest] - - steps: - - - uses: actions/checkout@v4 - - - name: Set up JDK ${{ matrix.java }} - uses: actions/setup-java@v4 - with: - java-version: ${{ matrix.java }} - distribution: 'temurin' - cache: 'maven' - - - name: Build with Maven - run: mvn -Pjacoco clean verify -B -V --no-transfer-progress ${{ matrix.flags }} - - - name: Codecov coverage - uses: codecov/codecov-action@v4 - with: - file: '*jacoco.xml'