Skip to content

Commit

Permalink
github workflow init
Browse files Browse the repository at this point in the history
  • Loading branch information
max402 committed Aug 30, 2023
1 parent c38845a commit 9834557
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Builds Pull-requests to key branches
name: Pull request CI

on:
pull_request:
branches:
- develop
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'adopt'

- name: Build project and run default test suite
run: mvn verify

0 comments on commit 9834557

Please sign in to comment.