Skip to content
This repository has been archived by the owner on Feb 6, 2025. It is now read-only.

implementata feature 2 #5

implementata feature 2

implementata feature 2 #5

Workflow file for this run

name: Java CI with Maven
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8.0.332'
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B install --file pom.xml