From 1093efdd8a6a056024aa797f699a552882caaca8 Mon Sep 17 00:00:00 2001 From: Stephen Hodgson Date: Wed, 31 Jul 2024 02:19:00 -0400 Subject: [PATCH] update workflow --- .github/workflows/validate.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index bf00f46..c3a19d5 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -2,17 +2,22 @@ name: validate on: push: branches: - - main + - 'main' pull_request: branches: - - main - workflow_dispatch: # Enable triggering the workflow manually from the Actions tab + - '*' + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: validate: - runs-on: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ macos-latest, windows-latest, ubuntu-latest ] steps: - uses: actions/checkout@v4 - run: echo "hello world"