Skip to content

Commit

Permalink
change2
Browse files Browse the repository at this point in the history
  • Loading branch information
AkaLrz committed Jul 1, 2024
1 parent 8a8860e commit 4df0483
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/jacoco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,22 @@ name: Coverage

on: [push, pull_request]

permissions:
contents: read

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
java-version: [ 8 ]

runs-on: ubuntu-latest
steps:
- name: Checkout branch
- uses: actions/checkout@v4
with:
java-version: 1.8
persist-credentials: false
- name: Set up JDK ${{ matrix.java }}
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
java-version: 1.8
cache: 'maven'

- name: Build with Maven
run: mvn --show-version --batch-mode --no-transfer-progress verify -Dmaven.test.failure.ignore=true -DfailIfNoTests=false -Dsurefire.failIfNoSpecifiedTests=false

Expand Down

0 comments on commit 4df0483

Please sign in to comment.