Files
wdi/.gitea/workflows/build.yaml
Walter Oggioni 82fbf618d7
Some checks failed
CI / checkout (push) Failing after 44s
CI / build (push) Failing after 1s
too
2024-03-24 11:04:57 +08:00

22 lines
430 B
YAML

name: CI
on:
push:
branches: [ master ]
jobs:
checkout:
runs-on: woryzen
container:
image: node:lts-alpine
steps:
- name: Check out repository code
uses: actions/checkout@v4
build:
runs-on: woryzen
container:
image: eclipse-temurin:21-jdk-alpine
steps:
- name: List directory
run: ls ${{ gitea.workspace }}
- name: Build
run: ./gradlew build