Skip to content

new branching structure and CI/CD #26

new branching structure and CI/CD

new branching structure and CI/CD #26

Workflow file for this run

name: 'build test'
on: [pull_request, push]
jobs:
verify:
runs-on: ubuntu-20.04
steps:
- name: Checkout...
uses: actions/checkout@v4
- name: Set up JDK...
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'
- name: Build and test...
run: mvn -ntp clean verify