Files
apimposter/.github/workflows/ci.yml
nenzen f606678d7f
All checks were successful
Build, Test & Checkstyle / build (push) Successful in 39s
Fix case insensitive bug (#1)
Fixes a bug where fields where not matched case insensitive but lower case.

Reviewed-on: #1
Reviewed-by: Andreas Svanberg <andreass@dsv.su.se>
Co-authored-by: nenzen <nenzen@dsv.su.se>
Co-committed-by: nenzen <nenzen@dsv.su.se>
2025-05-05 14:13:25 +02:00

30 lines
511 B
YAML

name: Build, Test & Checkstyle
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: ./mvnw clean verify
- name: Run tests
run: ./mvnw test
- name: Run Checkstyle
run: ./mvnw checkstyle:check