Skip to content

chore: Make README more useful, add self as developer of artifact #20

chore: Make README more useful, add self as developer of artifact

chore: Make README more useful, add self as developer of artifact #20

Workflow file for this run

name: build
# Runs build on every push up
on:
pull_request:
types: [ synchronize, opened, reopened, ready_for_review, converted_to_draft ]
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew clean build --refresh-dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}