Files
diceos/.gitea/workflows/build.yml
T
Renovate a080740a97
Build and Test / build (pull_request) Successful in 43s
Update actions/checkout action to v6
2026-05-13 13:12:42 +02:00

24 lines
495 B
YAML

name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5
with:
java-version: '21'
distribution: 'temurin'
- name: Build and Test
run: ./gradlew build