Raxen/.forgejo/workflows/build.yml
2023-06-20 15:16:58 +02:00

16 lines
No EOL
411 B
YAML

name: Build
run-name: ${{ github.actor }} is building
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: setup-java@v3
with:
distribution: 'temurin' # See 'Supported distributions' for available options
cache: 'gradle'
- name: build
run: |
chmod +x gradlew
./gradlew build