Skip to content

Commit

Permalink
fix: add pr workflow without coveralls run
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-unleash committed Jan 23, 2024
1 parent aecf16b commit b07993c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: PR

on:
pull_request:

jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
name: Checkout code
- name: Setup JDK
uses: actions/setup-java@v1
with:
java-version: 17
- uses: burrunan/gradle-cache-action@v1
name: Build and test
with:
job-id: jdk17
arguments: clean test jacocoTestReport
gradle-version: wrapper
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- main
pull_request:

jobs:
test:
Expand Down

0 comments on commit b07993c

Please sign in to comment.