Files
wdi/.gitea/workflows/build.yaml
Walter Oggioni fc763f1538
Some checks failed
CI / checkout (push) Failing after 35s
CI / build (push) Failing after 2s
too
2024-03-24 12:57:04 +08:00

24 lines
536 B
YAML

name: CI
on:
push:
branches: [ master ]
jobs:
checkout:
runs-on: woryzen
container:
image: node:lts-alpine
steps:
- name: Checkout sources
uses: https://github.com/RouxAntoine/checkout@v3.5.4
with:
github-server-url: 'https://woggioni.net/gitea'
build:
runs-on: woryzen
container:
image: eclipse-temurin:21-jdk-alpine
steps:
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build with Gradle
run: ./gradlew build