Skip to content

Commit

Permalink
Migrate to GitHub Actions (#90)
Browse files Browse the repository at this point in the history
* Migrate to GitHub Actions

* check only for master branch
  • Loading branch information
ocadaruma authored Feb 17, 2021
1 parent a8a6707 commit ae4b90c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 18 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [8, 11]
steps:
- uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Execute test
uses: eskatos/gradle-command-action@v1
with:
arguments: build integrationTest
17 changes: 0 additions & 17 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,7 +1,7 @@
Decaton
=======

[![Build Status](https://travis-ci.com/line/decaton.svg?branch=master)](https://travis-ci.com/line/decaton)
[![Build Status](https://github.com/line/decaton/workflows/CI/badge.svg?branch=master)](https://github.com/line/decaton/actions?query=workflow%3ACI+branch%3Amaster+event%3Apush)

Decaton is a streaming task processing framework built on top of [Apache Kafka](https://kafka.apache.org/).
It is designed to enable "concurrent processing of records consumed from one partition" which isn't possible in many Kafka consumer frameworks.
Expand Down

0 comments on commit ae4b90c

Please sign in to comment.