Skip to content

Commit 9434270

Browse files
ci: migrate appveyor and travis to github actions
1 parent 5007c2f commit 9434270

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

.github/workflows/CI.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
branches:
8+
- master
9+
10+
jobs:
11+
test:
12+
name: '${{ matrix.platform }} with Java 8'
13+
strategy:
14+
matrix:
15+
platform:
16+
- ubuntu-latest
17+
- windows-latest
18+
- macos-latest
19+
runs-on: ${{ matrix.platform }}
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v2
23+
- name: Set up JDK
24+
uses: actions/setup-java@v2
25+
with:
26+
distribution: adopt-hotspot
27+
java-version: 8
28+
- name: Build and Test
29+
run: mvn -B package

.travis.yml

-15
This file was deleted.

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# Feedback Portlet
22

33
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jasig.portlet/FeedbackPortlet/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.jasig.portlet/FeedbackPortlet)
4-
[![Linux Build Status](https://travis-ci.org/Jasig/FeedbackPortlet.svg?branch=master)](https://travis-ci.org/Jasig/FeedbackPortlet)
5-
[![Windows Build status](https://ci.appveyor.com/api/projects/status/1j35afgwdtvu0ets/branch/master?svg=true)](https://ci.appveyor.com/project/ChristianMurphy/feedbackportlet/branch/master)
4+
[![build status](https://github.com/uPortal-Project/FeedbackPortlet/workflows/CI/badge.svg?branch=master)](https://github.com/uPortal-Project/FeedbackPortlet/actions)
65

76
## About
87

appveyor.yml

-13
This file was deleted.

0 commit comments

Comments
 (0)