Skip to content

Commit

Permalink
chore(ci): use github ci instead of travis
Browse files Browse the repository at this point in the history
  • Loading branch information
oldratlee committed Sep 28, 2022
1 parent 79554da commit c840c3d
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 34 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Quickstart for GitHub Actions
# https://docs.github.com/en/actions/quickstart

name: CI
on: [ push, pull_request ]
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
os: [ ubuntu-latest ]
java: [ 8, 11, 17 ]
fail-fast: false
max-parallel: 64
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
cache: 'maven'
- name: Build with Maven
run: ./mvnw -V --no-transfer-progress clean install
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
Land
=================================================

[![Build Status](https://img.shields.io/travis/com/oldratlee/land/master?logo=travis-ci&logoColor=white)](https://travis-ci.com/github/oldratlee/land)
[![Coverage Status](https://coveralls.io/repos/oldratlee/classloader-playground/badge.svg?branch=master&?logo=codecov&logoColor=white)](https://coveralls.io/r/oldratlee/classloader-playground?branch=master)
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
[![GitHub Stars](https://img.shields.io/github/stars/oldratlee/land)](https://github.com/oldratlee/land/stargazers)
[![GitHub Forks](https://img.shields.io/github/forks/oldratlee/land)](https://github.com/oldratlee/land/fork)
[![GitHub issues](https://img.shields.io/github/issues/oldratlee/classloader-playground.svg)](https://github.com/oldratlee/land/issues)
# <div align="center">🍡 Land</div>

<p align="center">
<a href="https://github.com/oldratlee/land/actions/workflows/ci.yaml"><img src="https://img.shields.io/github/workflow/status/oldratlee/land/CI/master?logo=github&logoColor=white" alt="Github Workflow Build Status"></a>
<a href="https://openjdk.java.net/"><img src="https://img.shields.io/badge/Java-8+-green?logo=openjdk&logoColor=white" alt="JDK support"></a>
<a href="https://www.apache.org/licenses/LICENSE-2.0.html"><img src="https://img.shields.io/github/license/oldratlee/land?color=4D7A97&logo=apache" alt="License"></a>
<a href="https://github.com/oldratlee/land/stargazers"><img src="https://img.shields.io/github/stars/oldratlee/land" alt="GitHub Stars"></a>
<a href="https://github.com/oldratlee/land/fork"><img src="https://img.shields.io/github/forks/oldratlee/land" alt="GitHub Forks"></a>
<a href="https://github.com/oldratlee/land/issues"><img src="https://img.shields.io/github/issues/oldratlee/land" alt="GitHub issues"></a>
<a href="https://github.com/oldratlee/land"><img src="https://img.shields.io/github/repo-size/oldratlee/land" alt="GitHub repo size"></a>
<a href="https://gitpod.io/#https://github.com/oldratlee/land"><img src="https://img.shields.io/badge/Gitpod-ready--to--code-green?label=gitpod&logo=gitpod&logoColor=white" alt="gitpod: Ready to Code"></a>
</p>


<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
Expand Down

0 comments on commit c840c3d

Please sign in to comment.