Skip to content

GH-42 Draft v1

GH-42 Draft v1 #86

Workflow file for this run

name: Presence of Mind CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
name: "Build with JDK11"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Grant execute permission for gradlew
working-directory: pom-application
run: chmod +x gradlew
- name: Build with Gradle
working-directory: pom-application
run: ./gradlew build