Skip to content

Commit 6fd4c46

Browse files
committed
Github actions modifications (3.0)
Same as #1921, only for the stable branch * define deny list of files when modified not to run GHA * specitfy OS to be ubuntu-20.04 (is there a debian at all?) * only use perl 5.26 See #1920
1 parent 526bcca commit 6fd4c46

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)