Skip to content

Run git command in the repo dir #8

Run git command in the repo dir

Run git command in the repo dir #8

Workflow file for this run

name: Java Test with Maven
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- name: Test with Maven
run: mvn -B test --file pom.xml