-
-
Notifications
You must be signed in to change notification settings - Fork 15
36 lines (34 loc) · 894 Bytes
/
prove.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
name: run Perl tests
on:
push:
branches:
- '**'
- '!**release**'
tags-ignore:
# I tag release pushes but those should have already been tested
- 'release-*'
paths:
- 'cpansa/**.yml'
- 'external_reports/**.yml'
- '!.github/workflows/validate.yml'
- 'util/**'
- 't/*.t'
pull_request:
branches:
- '**'
paths:
- 'cpansa/**.yml'
- 'external_reports/**.yml'
- '!.github/workflows/validate.yml'
jobs:
perl:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: 'setup'
run: |
sudo cpan -T App::Cpan YAML::XS Mojolicious Data::Rx
- name: 'prove'
run: |
prove -Ilib