We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 526bcca + 6fd4c46 commit ca558a9Copy full SHA for ca558a9
1 file changed
.github/workflows/test.yml
@@ -1,14 +1,35 @@
1
name: testssl.sh CI
2
3
-on: [push, pull_request]
+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
17
18
19
20
21
22
23
24
25
26
jobs:
27
build:
28
runs-on: ${{ matrix.os }}
29
strategy:
30
matrix:
- os: ['ubuntu-latest']
- perl: [ '5.30', '5.26' ]
31
+ os: ['ubuntu-20.04']
32
+ perl: ['5.26']
33
name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
34
steps:
35
- uses: actions/checkout@v2
0 commit comments