Skip to content

Create maven_compile github action #1

Create maven_compile github action

Create maven_compile github action #1

Workflow file for this run

name: Maven Compile

Check failure on line 1 in .github/workflows/maven_compile.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/maven_compile.yml

Invalid workflow file

(Line: 12, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Maven compile
run: mvn -B compile