chore: setup quality checks #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Checks | |
on: pull_request | |
jobs: | |
unit-tests-coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: 21 | |
- name: Pull GraphQL Submodule | |
run: ./scripts/graphql/init.sh | |
- name: Build with Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- run: gradle clean build | |
- working-directory: code | |
run: gradle clean build |