Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate CI to GitHub Actions #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: test

on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:

jobs:
ubuntu:
name: ubuntu perl ${{ matrix.perl-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
perl-version:
- '5.14-buster'
- '5.16-buster'
- '5.18-buster'
- '5.20-buster'
- '5.22-buster'
- '5.24-buster'
- '5.26-buster'
- '5.28-buster'
- '5.30-buster'
- '5.32-buster'
- '5.34-buster'
- '5.36-buster'
- '5.38-buster'
- 'latest'
container:
image: perl:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v4
- name: perl -V
run: perl -V
- name: Install Dependencies
run: curl -fsSL --compressed https://raw.githubusercontent.com/skaji/cpm/main/cpm | perl - install -g --with-configure --show-build-log-on-failure
- name: Run Build.PL
run: perl Build.PL
- name: Run Build
run: ./Build build
- name: Run Tests
run: ./Build test
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[![Build Status](https://travis-ci.com/omohayui/WWW-FCM-HTTP-V1.svg?branch=master)](https://travis-ci.com/omohayui/WWW-FCM-HTTP-V1)
# NAME

WWW::FCM::HTTP::V1 - Client for Firebase Cloud Messaging HTTP v1 API
Expand Down