Raxen/.forgejo/workflows/build.yml

17 lines
448 B
YAML
Raw Normal View History

2023-06-20 12:46:54 +00:00
name: Build
run-name: ${{ github.actor }} is building
on: [ push, pull_request ]
jobs:
2023-06-20 13:09:00 +00:00
build:
2023-06-20 12:46:54 +00:00
runs-on: ubuntu-latest
steps:
2023-06-20 13:09:00 +00:00
- uses: actions/checkout@v3
2023-06-20 13:17:27 +00:00
- uses: actions/setup-java@v3
2023-06-20 13:16:58 +00:00
with:
2023-06-20 13:21:22 +00:00
java-version: '17'
2023-06-20 13:16:58 +00:00
distribution: 'temurin' # See 'Supported distributions' for available options
cache: 'gradle'
2023-06-20 13:09:00 +00:00
- name: build
2023-06-20 12:46:54 +00:00
run: |
2023-06-20 13:09:00 +00:00
chmod +x gradlew
2023-06-20 13:14:20 +00:00
./gradlew build