Skip to content

Commit

Permalink
Migrate to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jhalterman committed Apr 12, 2023
1 parent e8532b0 commit 3282627
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 16 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: build

on: [push, pull_request]

jobs:
compile:
runs-on: ubuntu-latest

strategy:
matrix:
java: [ 8, 11 ]
jdk: ['temurin', 'zulu']

name: Java ${{ matrix.java }} ${{ matrix.jdk }}
steps:
- name: Checkout Source Code
uses: actions/checkout@v2

- name: Setup Java
uses: actions/setup-java@v2
with:
distribution: ${{ matrix.jdk }}
java-package: jdk
java-version: ${{ matrix.java }}
cache: 'maven'

- name: Build with maven
run: mvn -B test
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

7 changes: 4 additions & 3 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ Lyra is **deprecated**: it is no longer maintained, it will not have new release
Consider using [RabbitMQ Java client][java-client] over Lyra.

# Lyra
[![Build Status](https://travis-ci.org/jhalterman/lyra.svg)](https://travis-ci.org/jhalterman/lyra)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/net.jodah/lyra/badge.svg)][maven]

[![Build Status](https://github.com/jhalterman/lyra/workflows/build/badge.svg)](https://github.com/jhalterman/lyra/actions)
[![Maven Central](https://img.shields.io/maven-central/v/net.jodah/lyra.svg?maxAge=60&colorB=53C92E)](https://maven-badges.herokuapp.com/maven-central/net.jodah/lyra)
[![License](http://img.shields.io/:license-apache-brightgreen.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
[![JavaDoc](http://javadoc-badge.appspot.com/net.jodah/lyra.svg?label=javadoc)](https://jodah.net/lyra/javadoc)
[![JavaDoc](https://img.shields.io/maven-central/v/net.jodah/lyra.svg?maxAge=60&label=javadoc&color=blue)](https://jodah.net/lyra/javadoc/)

*High availability RabbitMQ client*

Expand Down

0 comments on commit 3282627

Please sign in to comment.