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 b9a3df6 commit 5db5893
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 32 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build and Test
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
java: [ '8', '11', '17' ]
os: ['ubuntu-latest', 'windows-latest', 'macOS-latest']
runs-on: ${{ matrix.os }}
name: Java ${{ matrix.Java }} Build and Test (${{ matrix.os }})
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Maven verify
run: mvn -V -B verify
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[![Build Status](https://travis-ci.com/expath/expath-pkg-java.png?branch=master)](https://travis-ci.com/expath/expath-pkg-java)
[![Build status](https://ci.appveyor.com/api/projects/status/jb816i3e4fh8wob3/branch/master?svg=true)](https://ci.appveyor.com/project/AdamRetter/expath-pkg-java/branch/master)
[![Build Status](https://github.com/expath/expath-pkg-java/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/expath/expath-pkg-java/actions/workflows/ci.yml)
[![Maven Central](https://img.shields.io/maven-central/v/org.expath.packaging/pkg.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22org.expath.packaging%22%20AND%20a:%22pkg%22)
[![License](https://img.shields.io/badge/license-MPL%201.0-blue.svg)](https://opensource.org/licenses/MPL-1.0)

Expand Down
14 changes: 0 additions & 14 deletions appveyor.yml

This file was deleted.

0 comments on commit 5db5893

Please sign in to comment.