This repository has been archived on 2026-07-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
acquire-core-migration/.forgejo/workflows/ci.yml
forge-bot ce73ce9eaa
All checks were successful
ci / build (push) Successful in 1m16s
fix(ci): build Spring target in a JDK17+Maven container (runner image lacks java/mvn)
2026-07-18 09:59:10 +00:00

13 lines
409 B
YAML

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container:
image: maven:3.9-eclipse-temurin-17
steps:
- run: |
apt-get update -qq && apt-get install -y -qq git >/dev/null 2>&1
git clone "${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}.git" repo
cd repo && git checkout "$GITHUB_SHA"
cd boot && mvn -q -B -DskipTests=false test