Skip to content

Commit

Permalink
Switch from Travis CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
adamretter committed Jun 17, 2024
1 parent 4a9d61e commit ce26314
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
java: [ '8', '11', '17' ]
name: Java ${{ matrix.Java }} Build and Test
steps:
- uses: actions/checkout@v4
- name: Setup java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
16 changes: 0 additions & 16 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,6 +1,6 @@
# EXPath Tools Java

[![Build Status](https://travis-ci.com/expath/expath-tools-java.svg?branch=master)](https://travis-ci.com/expath/expath-tools-java)
[![Build Status](https://github.com/expath/expath-tools-java/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/expath/expath-tools-java/actions/workflows/ci.yml)
[![Maven Central](https://img.shields.io/maven-central/v/org.expath.tools/tools-java.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22org.expath.tools%22%20AND%20a:%22tools-java%22)
[![License](https://img.shields.io/badge/license-MPL%201.0-blue.svg)](https://opensource.org/licenses/MPL-1.0)

Expand Down

0 comments on commit ce26314

Please sign in to comment.