Skip to content

removing unused dependencies in build.gradle #42

removing unused dependencies in build.gradle

removing unused dependencies in build.gradle #42

Workflow file for this run

name: Java CI with Gradle
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
repository_dispatch:
types: contracts changed
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
java: [ 17 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: ${{ matrix.java }}
- name: Grant execute permission for gradlew on BFF repo
run: chmod +x gradlew
- name: Build BFF project with Gradle
run: ./gradlew build