File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will build a Java project with Maven
2+ # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+
4+ name : Java CI with Maven
5+
6+ on : [ push, pull_request ]
7+
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - uses : actions/checkout@v2
14+ - name : Set up JDK 8
15+ uses : actions/setup-java@v2
16+ with :
17+ java-version : ' 8'
18+ distribution : ' adopt'
19+ cache : maven
20+ - name : Build with Maven
21+ run : mvn --batch-mode --update-snapshots verify
Original file line number Diff line number Diff line change 11# Spatial4j
22
3- [ ![ Build] ( https://travis-ci.org /locationtech/spatial4j. svg )] ( https ://travis-ci.org /locationtech/spatial4j)
3+ [ ![ Build] ( https://github.com /locationtech/spatial4j/actions/workflows/build.yml/badge. svg )] ( ttps ://github.com /locationtech/spatial4j/actions )
44[ ![ Coverage] ( https://img.shields.io/codecov/c/github/locationtech/spatial4j.svg )] ( https://codecov.io/github/locationtech/spatial4j/ )
55[ ![ Maven] ( https://img.shields.io/maven-central/v/org.locationtech.spatial4j/spatial4j.svg )] ( https://maven-badges.herokuapp.com/maven-central/org.locationtech.spatial4j/spatial4j/ )
66
You can’t perform that action at this time.
0 commit comments