Skip to content

Commit

Permalink
ci: migrate travis ci to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianMurphy committed Aug 7, 2021
1 parent 1122898 commit 0554080
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 12 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
name: '${{ matrix.platform }} with Java 8'
strategy:
matrix:
platform:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: adopt-hotspot
java-version: 8
- name: Build and Test
run: mvn -B package
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# ESUP File Manager

[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.esupportail.portlet.filemanager/esup-filemanager/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.esupportail.portlet.filemanager/esup-filemanager)
[![build status](https://github.com/uPortal-Project/esup-filemanager/workflows/CI/badge.svg?branch=master)](https://github.com/uPortal-Project/esup-filemanager/actions)

> Esup File Manager allows users to perform file management on their home directories.
## Features
Expand Down

0 comments on commit 0554080

Please sign in to comment.