gitea workflow

This commit is contained in:
Jill 2023-06-19 08:27:35 +03:00
parent 34f8aa382e
commit 16649dcf87
Signed by: oat
GPG Key ID: 33489AA58A955108
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 8
uses: https://github.com/actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify