Skip to content

chore: adapt to new Gropius GraphQL schema #13

chore: adapt to new Gropius GraphQL schema

chore: adapt to new Gropius GraphQL schema #13

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
permissions:
contents: read
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 21
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Execute Gradle build
run: ./gradlew build