Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson committed Jul 31, 2024
1 parent 5c0a87d commit 1093efd
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 1093efd

Please sign in to comment.