Skip to content

chore(deps): update actions/checkout action to v7 #15

chore(deps): update actions/checkout action to v7

chore(deps): update actions/checkout action to v7 #15

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
run:
runs-on: ubuntu-24.04
strategy:
matrix:
operating-system: [ubuntu-24.04]
java-versions: ['11', '17', '21']
name: Java ${{ matrix.java-versions }} Test on ${{ matrix.operating-system }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- name: Set up JDK ${{ matrix.java-versions }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java-versions }}
cache: 'maven'
- name: Run test suite
run: mvn test