File tree Expand file tree Collapse file tree 4 files changed +27
-11
lines changed
Expand file tree Collapse file tree 4 files changed +27
-11
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ java : [ '8', '11', '14' ]
15+
16+ steps :
17+ - uses : actions/checkout@v2
18+ - name : Setup Java
19+ uses : actions/setup-java@v1
20+ with :
21+ java-version : ${{ matrix.java }}
22+ - name : Build with Gradle
23+ run : ./gradlew build
24+ - name : Publish coverage
25+ run : ./gradlew jacocoTestReport coveralls
Original file line number Diff line number Diff line change 11. *
2+ ! .github /
23* .class
34* .o
45
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- [ ![ Build Status ] ( https://travis-ci.org /bwaldvogel/liblinear-java.png?branch=master )] ( https://travis-ci.org/bwaldvogel/liblinear-java )
1+ ![ CI ] ( https://github.com /bwaldvogel/liblinear-java/workflows/CI/badge.svg )
22[ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/de.bwaldvogel/liblinear/badge.svg )] ( http://maven-badges.herokuapp.com/maven-central/de.bwaldvogel/liblinear )
33[ ![ Coverage Status] ( https://coveralls.io/repos/github/bwaldvogel/liblinear-java/badge.svg?branch=master )] ( https://coveralls.io/github/bwaldvogel/liblinear-java?branch=master )
44[ ![ BSD 3-Clause License] ( https://img.shields.io/github/license/bwaldvogel/liblinear-java.svg )] ( https://opensource.org/licenses/BSD-3-Clause )
You can’t perform that action at this time.
0 commit comments