Skip to content

Commit

Permalink
Replace TravisCI with GitHub Actions. (#507)
Browse files Browse the repository at this point in the history
- Resolves #506
  • Loading branch information
ruebot committed Jan 18, 2021
1 parent 074810b commit 1e061c9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 35 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/mvn-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Maven build

on:
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: '11'
- name: Build artifacts, javadocs, and site
run: |
mvn install -B -V
mvn javadoc:jar
mvn javadoc:test-aggregate
mvn site
- name: Upload coverage report to Codecov
run: bash <(curl -s https://codecov.io/bash)
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# The Archives Unleashed Toolkit
[![Build Status](https://travis-ci.org/archivesunleashed/aut.svg?branch=master)](https://travis-ci.org/archivesunleashed/aut)
[![codecov](https://codecov.io/gh/archivesunleashed/aut/branch/master/graph/badge.svg)](https://codecov.io/gh/archivesunleashed/aut)
[![codecov](https://codecov.io/gh/archivesunleashed/aut/branch/main/graph/badge.svg)](https://codecov.io/gh/archivesunleashed/aut)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.archivesunleashed/aut/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.archivesunleashed/aut)
[![Javadoc](https://javadoc-badge.appspot.com/io.archivesunleashed/aut.svg?label=javadoc)](http://api.docs.archivesunleashed.io/0.70.0/apidocs/index.html)
[![Scaladoc](https://javadoc-badge.appspot.com/io.archivesunleashed/aut.svg?label=scaladoc)](http://api.docs.archivesunleashed.io/0.70.0/scaladocs/index.html)
Expand Down

0 comments on commit 1e061c9

Please sign in to comment.