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"