Skip to content

Commit

Permalink
Add build workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Jan 17, 2025
1 parent 3785f3e commit d045db4
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
cache: maven
- name: Build with Maven
run: mvn --no-transfer-progress --batch-mode verify
2 changes: 0 additions & 2 deletions .travis.yml

This file was deleted.

0 comments on commit d045db4

Please sign in to comment.