Skip to content

Commit ca558a9

Browse files
authored
Merge pull request #1922 from drwetter/gha_denylist_3.0
Github actions modifications (3.0)
2 parents 526bcca + 6fd4c46 commit ca558a9

1 file changed

Lines changed: 24 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,35 @@
11
name: testssl.sh CI
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'utils/**'
7+
- 'docs/**'
8+
- 'bin/**'
9+
- '**.md'
10+
- '**.pem'
11+
- '**.pdf'
12+
- '**.html'
13+
- 'LICENSE'
14+
- 'Dockerfile'
15+
pull_request:
16+
- 'utils/**'
17+
- 'docs/**'
18+
- 'bin/**'
19+
- '**.md'
20+
- '**.pem'
21+
- '**.pdf'
22+
- '**.html'
23+
- 'LICENSE'
24+
- 'Dockerfile'
425

526
jobs:
627
build:
728
runs-on: ${{ matrix.os }}
829
strategy:
930
matrix:
10-
os: ['ubuntu-latest']
11-
perl: [ '5.30', '5.26' ]
31+
os: ['ubuntu-20.04']
32+
perl: ['5.26']
1233
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
1334
steps:
1435
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)