Skip to content

Commit 9dce194

Browse files
committed
switch to GH actions
1 parent 9f932a6 commit 9dce194

File tree

4 files changed

+30
-39
lines changed

4 files changed

+30
-39
lines changed

.github/workflows/ci.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Java Hash Queue CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
java: [ '12', '13', '15' , '17' ]
16+
name: Java ${{ matrix.Java }} build
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Set up Java
21+
uses: actions/setup-java@v2
22+
with:
23+
java-version: ${{ matrix.java }}
24+
distribution: 'adopt-openj9'
25+
cache: maven
26+
- name: Build with Maven
27+
run: mvn -B package --file pom.xml
28+
- name: Codecov
29+
uses: codecov/[email protected]

.github/workflows/maven-publish.yml

-30
This file was deleted.

.travis.yml

-8
This file was deleted.

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.com/dejankos/java-hash-queue.svg?branch=master)](https://travis-ci.com/dejankos/java-hash-queue)
1+
[![CI Status](https://github.com/dejankos/java-hash-queue/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/dejankos/java-hash-queue/actions/workflows/ci.yml)
22
[![codecov](https://codecov.io/gh/dejankos/java-hash-queue/branch/master/graph/badge.svg)](https://codecov.io/gh/dejankos/java-hash-queue)
33

44
# Java Blocking Hash Queue

0 commit comments

Comments
 (0)