Skip to content

Commit

Permalink
Switch to Github Actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
GreyTeardrop committed Jul 1, 2022
1 parent 121e2b2 commit 24f42e2
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 10 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/maven-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Maven build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up JDK
uses: actions/[email protected]
with:
distribution: temurin
java-version: 8
cache: maven
- name: Run Maven build
uses: GabrielBB/[email protected]
with:
run: ./mvnw -B verify
- name: Publish the test report
uses: scacap/[email protected]
if: always()
with:
check_name: tests
github_token: ${{ secrets.GITHUB_TOKEN }}
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit 24f42e2

Please sign in to comment.