22 lines
438 B
YAML
22 lines
438 B
YAML
name: Maven CI/CD
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
build_and_test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'adopt'
|
|
architecture: x64
|
|
cache: maven
|
|
|
|
- name: Build project with Maven
|
|
run: mvn -B package --file pom.xml |