moviequotebot/.gitea/workflows/build_and_test.yml
Louis Vallat b5dc2990cb
All checks were successful
Build and test program / Build and test (push) Successful in 15s
feat: moved to gitea workflows for CI/CD
Signed-off-by: Louis Vallat <contact@louis-vallat.dev>
2024-09-08 17:52:58 +02:00

17 lines
387 B
YAML

name: "Build and test program"
on: push
jobs:
build:
name: "Build and test"
runs-on: java-bookworm
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Compile
run: gradle --build-cache compileJava
- name: Test
run: gradle --build-cache check
- name: Package
run: gradle --build-cache assemble