17 lines
317 B
YAML
17 lines
317 B
YAML
image: java:17:latest
|
|
|
|
pipelines:
|
|
default:
|
|
- step:
|
|
name: "Download dependencies"
|
|
script:
|
|
- bash ./bld download
|
|
- step:
|
|
name: "Compile project"
|
|
script:
|
|
- bash ./bld compile
|
|
- step:
|
|
name: "Run tests"
|
|
script:
|
|
- bash ./bld test
|
|
|