Some checks failed
Java CI with Maven / build (push) Failing after 5m21s
20 lines
337 B
YAML
20 lines
337 B
YAML
name: Java CI with Maven
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: nektos/act-environments-ubuntu:18.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Build with Maven
|
|
run: mvn -B package --file pom.xml
|