switch to github action

This commit is contained in:
Samuel Carlsson 2022-02-08 16:20:49 +01:00 committed by Samuel Carlsson
parent 6dd039aeb5
commit 3207c50778
2 changed files with 26 additions and 5 deletions

26
.github/workflows/maven.yml vendored Normal file
View File

@ -0,0 +1,26 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml

View File

@ -1,5 +0,0 @@
language: java
jdk:
- openjdk8
after_success:
- bash <(curl -s https://codecov.io/bash)