Skip to content

Commit

Permalink
Replace Travis CI with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bernd committed Mar 12, 2024
1 parent 5c1db38 commit 17e8663
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 16 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: "Maven"

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
name: "Build"
runs-on: "ubuntu-latest"

steps:
- uses: "actions/checkout@v4"

- name: "Set up JDK 8"
uses: "actions/setup-java@v4"
with:
java-version: "8"
distribution: "temurin"
cache: "maven"

- name: "Build with Maven"
env:
MAVEN_OPTS: >
-DtrimStackTrace=false
-Djansi.force=true
MAVEN_ARGS: >
--show-version
--batch-mode
--fail-fast
--update-snapshots
--no-transfer-progress
run: "./mvnw clean verify"
14 changes: 0 additions & 14 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
Expand Up @@ -2,8 +2,7 @@ GELF Client
===========

[![Maven Central](https://img.shields.io/maven-central/v/org.graylog2/gelfclient.svg)](https://mvnrepository.com/artifact/org.graylog2/gelfclient)
[![Build Status](https://travis-ci.org/Graylog2/gelfclient.svg)](https://travis-ci.org/Graylog2/gelfclient)
[![Coverage Status](https://img.shields.io/coveralls/Graylog2/gelfclient.svg)](https://coveralls.io/r/Graylog2/gelfclient)
[![Build](https://github.com/Graylog2/gelfclient/actions/workflows/build.yml/badge.svg)](https://github.com/Graylog2/gelfclient/actions/workflows/build.yml)

A Java GELF client library with support for different transports.

Expand Down

0 comments on commit 17e8663

Please sign in to comment.