Skip to content

Merge branch 'main' of https://github.com/felipementel/API.Model.Java #12

Merge branch 'main' of https://github.com/felipementel/API.Model.Java

Merge branch 'main' of https://github.com/felipementel/API.Model.Java #12

Workflow file for this run

name: Java CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Java 21
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: '21'
cache: maven
- name: Make Maven Wrapper executable
run: chmod +x ./mvnw
- name: Run tests
run: ./mvnw -B verify