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