Skip to content

Commit

Permalink
SP-40 Starting a build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbrodie committed Aug 5, 2022
1 parent f377438 commit f239ad8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build

on:
push:
branches-ignore:
- 'master'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '1.8'
distribution: 'adopt'
- name: Build with Maven
run: mvn compile

0 comments on commit f239ad8

Please sign in to comment.