Skip to content

Commit

Permalink
Move from travis to github actions (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
lmuhlha authored Nov 18, 2020
1 parent 63b724d commit 8f1d316
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 13 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: JavaCI

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Maven
run: mvn -B -D environment=test verify
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# semantic-metrics
[![Build Status](https://travis-ci.org/spotify/semantic-metrics.svg?branch=master)](https://travis-ci.org/spotify/semantic-metrics)
[![Build Status](https://github.com/spotify/semantic-metrics/workflows/JavaCI/badge.svg)](https://github.com/spotify/semantic-metrics/actions?query=workflow%3AJavaCI)

This project contains modifications to the
[dropwizard metrics](https://github.com/dropwizard/metrics) project.
Expand Down

0 comments on commit 8f1d316

Please sign in to comment.