Skip to content

Commit

Permalink
Switch to Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
TDesjardins committed Aug 8, 2023
1 parent c92e187 commit 9f22dd5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 13 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Workflow for simple build with test

name: Build

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

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 -B package --file pom.xml
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit 9f22dd5

Please sign in to comment.