Skip to content

Fixed typo in GH Action. #63

Fixed typo in GH Action.

Fixed typo in GH Action. #63

Workflow file for this run

name: Java CI
on:
push:
branches: ['**']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11'
- name: Build with Maven
run: mvn -B package --file pom.xml