name: Check PR | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
check-pr-quality: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Get code from repository" | |
- run: echo "Setup JDK 1.8" | |
- run: echo "Make gradlew executable" | |
- run: echo "Compile project" | |
- run: echo "Run tests" | |
- run: echo "Run quality tools" | |
set-reviewer: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Check availability" | |
- run: echo "Set first available" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment