Skip to content
This repository was archived by the owner on May 6, 2025. It is now read-only.

Commit b8f604e

Browse files
authored
Merge pull request #52 from maxmind/greg/gh-action
Switch to GitHub Actions
2 parents 55ad084 + 440f420 commit b8f604e

File tree

2 files changed

+37
-41
lines changed

2 files changed

+37
-41
lines changed

.github/workflows/test.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Unit Tests
2+
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: '5 10 * * SUN'
8+
9+
jobs:
10+
11+
build:
12+
strategy:
13+
matrix:
14+
perl-version:
15+
- '5.10'
16+
- '5.12'
17+
- '5.14'
18+
- '5.16'
19+
- '5.18'
20+
- '5.20'
21+
- '5.22'
22+
- '5.24'
23+
- '5.26'
24+
- '5.28'
25+
- '5.30'
26+
- '5.32'
27+
- '5.34'
28+
platform: ['ubuntu-latest']
29+
runs-on: ${{ matrix.platform }}
30+
name: "Build ${{ matrix.perl-version }} test on ${{ matrix.platform }}"
31+
steps:
32+
- uses: actions/checkout@v2
33+
- uses: shogo82148/actions-setup-perl@v1
34+
with:
35+
perl-version: ${{ matrix.perl-version }}
36+
install-modules-with: cpm
37+
- run: prove -lv t

.travis.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)