Skip to content

Commit

Permalink
IM-98 Enable GH actions for building
Browse files Browse the repository at this point in the history
- We don't expect to move credentials to GitHub, just basic "sanity
  check" (build)
  • Loading branch information
iperdomo committed Jan 19, 2024
1 parent 6fe926e commit cfbccf4
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and test

on:
push:

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Java setup
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: Build with maven
run: |
./mvnw -U clean install
./mvnw -pl :klab.ogc test -Dtest="*STAC*"

0 comments on commit cfbccf4

Please sign in to comment.