Skip to content

Commit

Permalink
Merge pull request #8 from dragon3/use-github-actions
Browse files Browse the repository at this point in the history
Setup Github Actions for test
  • Loading branch information
dragon3 committed Sep 22, 2019
2 parents 55b0e77 + 623ab52 commit 05a9d28
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 12 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,28 @@
name: test
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# os: ['ubuntu-18.04', 'macOS-10.14', 'windows-2019']
os: ['ubuntu-18.04']
perl:
- '5.22'
- '5.24'
- '5.26'
- '5.28'
- '5.30'
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- run: perl -V
- run: cpanm -n Devel::Cover::Report::Coveralls
- run: cpanm --installdeps -n .
- run: perl Build.PL && ./Build build && cover -test -report coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
@@ -1,4 +1,5 @@
[![Build Status](https://travis-ci.org/dragon3/Plack-App-GitSmartHttp.svg?branch=master)](https://travis-ci.org/dragon3/Plack-App-GitSmartHttp) [![Coverage Status](https://img.shields.io/coveralls/dragon3/Plack-App-GitSmartHttp/master.svg?style=flat)](https://coveralls.io/r/dragon3/Plack-App-GitSmartHttp?branch=master)
[![Actions Status](https://github.com/dragon3/Plack-App-GitSmartHttp/workflows/test/badge.svg)](https://github.com/dragon3/Plack-App-GitSmartHttp/actions) [![Coverage Status](https://img.shields.io/coveralls/dragon3/Plack-App-GitSmartHttp/master.svg?style=flat)](https://coveralls.io/r/dragon3/Plack-App-GitSmartHttp?branch=master)

# NAME

Plack::App::GitSmartHttp - Git Smart HTTP Server PSGI(Plack) Implementation
Expand Down

0 comments on commit 05a9d28

Please sign in to comment.