Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

linux ci

linux ci #5

Workflow file for this run

name: java action
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml