Merge pull request #1921 from drwetter/gha_denylist

Github actions modifications
This commit is contained in:
Dirk Wetter 2021-06-19 12:30:00 +02:00 committed by GitHub
commit 9f0d0c0062
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,35 @@
name: testssl.sh CI name: testssl.sh CI
on: [push, pull_request] on:
push:
paths-ignore:
- 'utils/**'
- 'docs/**'
- 'bin/**'
- '**.md'
- '**.pem'
- '**.pdf'
- '**.html'
- 'LICENSE'
- 'Dockerfile'
pull_request:
- 'utils/**'
- 'docs/**'
- 'bin/**'
- '**.md'
- '**.pem'
- '**.pdf'
- '**.html'
- 'LICENSE'
- 'Dockerfile'
jobs: jobs:
build: build:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
os: ['ubuntu-latest'] os: ['ubuntu-20.04']
perl: [ '5.30', '5.26' ] perl: ['5.26']
name: Perl ${{ matrix.perl }} on ${{ matrix.os }} name: Perl ${{ matrix.perl }} on ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2