Skip to content

Commit

Permalink
Set up starter CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AFaust committed Jan 5, 2023
1 parent 1d17f24 commit 446cb38
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/build-workflow.yaml
@@ -0,0 +1,35 @@
name: Java CI

on:
push:
paths-ignore:
- 'grafana/**'
- 'images/**'
- '*.md'
- '**/*.md'
- '*.sh'
- '**/*.sh'
- '*.bat'
- '**/*.bat'
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots package

0 comments on commit 446cb38

Please sign in to comment.