Skip to content

Commit

Permalink
Merge pull request #195 from flyingsaucerproject/ci/setup-github-actions
Browse files Browse the repository at this point in the history
Setup CI with GitHub Actions
  • Loading branch information
asolntsev authored Sep 6, 2023
2 parents fa57229 + e8006d9 commit ed2c952
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on:
push:
branches: [ "master" ]
pull_request:

jobs:
build:

runs-on: ubuntu-latest

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 -B package

0 comments on commit ed2c952

Please sign in to comment.