Skip to content

Commit

Permalink
Merge pull request #226 from DropSnorz/ci/dev-workflow
Browse files Browse the repository at this point in the history
Add dev action workflow
  • Loading branch information
DropSnorz authored Jan 8, 2024
2 parents d2c5679 + 449cf2d commit f13aeb6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Owlplug Dev

on:
push:
branches:
- '**'
- '!master'

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 17
cache: 'maven'
- name: Build maven parent project
run: mvn -B install -DskipTests
- name: Run Test
run: mvn test

0 comments on commit f13aeb6

Please sign in to comment.