Files
unicenta-opos/.github/workflows/mvn-build.yml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: unmarshal errors: line 16: cannot unmarshal !!map into string
2023-11-13 13:47:15 +00:00

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