Skip to content

Commit

Permalink
Setup GH Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pzygielo committed Mar 4, 2024
1 parent c1a6f9c commit 6286703
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/concurro.yml
@@ -0,0 +1,21 @@
name: Concurro CI

on:
workflow_dispatch:
pull_request:

jobs:
build:
name: "Build and test"
runs-on: ubuntu-latest

steps:
- name: Checkout for build
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Build with Maven
run: mvn -V -ntp verify

0 comments on commit 6286703

Please sign in to comment.