Skip to content

Commit

Permalink
updated CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bourgesl committed Oct 28, 2021
1 parent 1427154 commit cd90031
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 6 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on:
push:
pull_request:
workflow_dispatch:

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 (Maven)
run: |
mvn verify
echo "That's All, folks !"
- name: Upload
uses: actions/upload-artifact@v2
with:
name: marlin-build
path: target/marlin-*.jar

6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

0 comments on commit cd90031

Please sign in to comment.