From 5cd97ddcb9806e6f044dd6f7983fa55852d9aa17 Mon Sep 17 00:00:00 2001 From: Dirk Date: Sat, 19 Jun 2021 10:45:08 +0200 Subject: [PATCH] Correct YAML error in GHA + add macOS - yamllint to the rescue. Still shows an error though: 4:3 error syntax error: expected , but found '' (syntax) - added macos, see https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners --- .github/workflows/test.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2775db8..95283e5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,24 +1,24 @@ name: testssl.sh CI on: [push, pull_request] - paths-ignore: - - 'utils/**' - - 'docs/**' - - 'bin/**' - - '**.md' - - '**.pem' - - '**.pdf' - - '**.html' - - 'LICENSE' - - 'Dockerfile' + paths-ignore: + - 'utils/**' + - 'docs/**' + - 'bin/**' + - '**.md' + - '**.pem' + - '**.pdf' + - '**.html' + - 'LICENSE' + - 'Dockerfile' jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: - os: ['ubuntu-20.04'] - perl: [ '5.26' ] + os: ['ubuntu-20.04', 'macos-10.15'] + perl: ['5.26'] name: Perl ${{ matrix.perl }} on ${{ matrix.os }} steps: - uses: actions/checkout@v2