Skip to content

Commit

Permalink
IM-204: Build using GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
iperdomo committed Nov 10, 2023
1 parent cdb22be commit 5f2ee50
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Automated tests

on:
push:

jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Java setup
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build with maven
run: mvn -B clean package

0 comments on commit 5f2ee50

Please sign in to comment.