Skip to content

update md

update md #24

Workflow file for this run

# # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
# name: Maven Test
# on:
# pull_request:
# branches: [ main ]
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Set up JDK 17
# uses: actions/setup-java@v2
# with:
# java-version: '17'
# distribution: 'temurin'
# cache: maven
# - name: Build Image Test with Maven
# run: |
# mvn -B test
# - name: Caching Maven Dependencies
# uses: actions/cache@v2
# with:
# path: ~/.m2/repository
# key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
# restore-keys: |
# ${{ runner.os }}-maven-