Skip to content

Commit

Permalink
Merge pull request #157 from ppodgorsek/issue-156
Browse files Browse the repository at this point in the history
Issue #156 - Replace Travis CI by GitHub Actions
  • Loading branch information
ppodgorsek authored Jun 25, 2023
2 parents 6fbcbe6 + 80875d7 commit 706c9f9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Maven CI

on: [push]

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: 'temurin'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots package
1 change: 0 additions & 1 deletion .travis.yml

This file was deleted.

0 comments on commit 706c9f9

Please sign in to comment.