Skip to content

update graphql java to 0.0.0-2024-03-22T23-18-46-1eb245d #935

update graphql java to 0.0.0-2024-03-22T23-18-46-1eb245d

update graphql java to 0.0.0-2024-03-22T23-18-46-1eb245d #935

Workflow file for this run

name: Pull Request Build
# For pull requests: builds and test
on:
push:
branches:
- '!master'
pull_request:
branches:
- master
jobs:
buildAndTestPR:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Java 11
uses: actions/setup-java@v1
with:
java-version: '11.0.9'
- name: build and test
run: ./gradlew assemble --info && ./gradlew check --info
- uses: actions/upload-artifact@v3
if: failure()
with:
name: test-results
path: "**/build/reports/tests/test"
# Default is 90 days
retention-days: 7