Skip to content

Add information about fork to README #4

Add information about fork to README

Add information about fork to README #4

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1000
fetch-tags: true
- name: Setup JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Gradle and generate dependency Graph
if: ${{github.ref == 'refs/heads/main' && github.event_name != 'pull_request'}}
uses: gradle/gradle-build-action@v2
with:
arguments: build
dependency-graph: 'generate-and-submit'
- name: Build with Gradle
if: ${{github.ref != 'refs/heads/main' || github.event_name == 'pull_request'}}
uses: gradle/gradle-build-action@v2
with:
arguments: build