Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a separate workflow for running checks with Drill4J #2130

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/workflows/drill-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,17 @@ on:
type: string
required: false
default: 'false'
push:
branches:
- develop
paths-ignore:
- '.github/**'
- README.md
- gradle.properties

jobs:
call-java-checks:
name: Call Java Checks
name: Call Java Checks with Drill4J
runs-on: 'rp-beta-runner-set'
env:
DRILL_AGENT_ENABLED: ${{ inputs.drill-agent-enabled }}
Expand All @@ -33,12 +40,11 @@ jobs:
- name: Build with Gradle
id: build
run: |
./gradlew build
continue-on-error: true
./gradlew test --continue

- name: Upload test report
if: failure()
uses: actions/upload-artifact@v3
with:
name: test-report
path: build/reports/tests/test/index.html
path: |
build/reports/tests/test/**
Loading