Skip to content

Commit

Permalink
Migrate from Travis to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Resci committed Nov 22, 2021
1 parent 5d25a2f commit 1f7fe65
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Java CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit 1f7fe65

Please sign in to comment.