Skip to content

update make command

update make command #3

name: Continuous Integration
on:
push:
permissions:
contents: read
concurrency:
group: "${{ github.workflow }}-${{ github.ref != 'refs/heads/main' && github.ref || github.run_id }}"
cancel-in-progress: true
jobs:
maven-verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
show-progress: false
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build and Run Tests
run: mvn -T 4 clean verify