Skip to content

Solve 'Find the smallest' kata #15

Solve 'Find the smallest' kata

Solve 'Find the smallest' kata #15

Workflow file for this run

---
name: Maven CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 21
- name: Build
run: mvn -B -DskipTests compile
- name: Run tests
run: mvn -B test