File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build
2+
3+ on : [ push, pull_request, workflow_dispatch ]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+
9+ steps :
10+ - uses : actions/checkout@v2
11+
12+ - name : " Maven Cache"
13+ uses : actions/cache@v2
14+ with :
15+ path : ~/.m2/repository
16+ key : ${{ runner.os }}-cache-maven-${{ hashFiles('**/pom.xml') }}
17+
18+ - name : " Setup Java"
19+ uses : actions/setup-java@v1
20+ with :
21+ java-version : 1.8
22+
23+ - name : " Maven Test"
24+ run : mvn clean test cobertura:cobertura jacoco:report coveralls:report -DdryRun=true
25+
26+ - name : " Send to Coveralls (build java-${{ github.run_number }})"
27+ uses : MikeEdgar/github-action@raw_coverage_file
28+ with :
29+ github-token : ${{ secrets.github_token }}
30+ path-to-file : ' ./target/coveralls.json'
31+ coverage-format : raw
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- [ ![ Build Status] ( https://travis-ci.org /TAMULib/LibraryServiceStatusSystemService.svg?branch=master )] ( https://travis-ci.org /TAMULib/LibraryServiceStatusSystemService )
2- [ ![ Coverage Status] ( https://coveralls.io/repos/github/TAMULib/LibraryServiceStatusSystemService/badge.svg?branch=master )] ( https://coveralls.io/github/TAMULib/LibraryServiceStatusSystemService?branch=master )
1+ [ ![ Build Status] ( https://github.com /TAMULib/LibraryServiceStatusSystemService/workflows/Build/badge .svg )] ( https://github.com /TAMULib/LibraryServiceStatusSystemService/actions?query=workflow%3ABuild )
2+ [ ![ Coverage Status] ( https://coveralls.io/repos/github/TAMULib/LibraryServiceStatusSystemService/badge.svg )] ( https://coveralls.io/github/TAMULib/LibraryServiceStatusSystemService )
33
44# Library Service Status System
55
Original file line number Diff line number Diff line change 2929 <id >tamu-snapshots</id >
3030 <url >https://artifacts.library.tamu.edu/repository/maven-snapshots</url >
3131 </repository >
32+
33+ <repository >
34+ <id >mvnrepository</id >
35+ <name >Maven Central Repository</name >
36+ <url >https://repo1.maven.org/maven2/</url >
37+ </repository >
3238 </repositories >
3339
3440 <dependencies >
You can’t perform that action at this time.
0 commit comments