Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
fix: duplicate workflows in push and pull_request
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanleecode committed Dec 21, 2022
1 parent 56f29cb commit a69a607
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/fmt.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Check Formatting
on:
push:
branches:
- main
- pull_request
- push
jobs:
check:
name: Check Formatting
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/spawn_examples.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Spawn Examples
on:
push:
branches:
- main
- workflow_dispatch
- push
- pull_request
jobs:
generate_example_paths:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Spellcheck
on:
push:
branches:
- main
- pull_request
- push
jobs:
spellcheck:
runs-on: ubuntu-latest
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Test
on:
push:
branches:
- main
- pull_request
- push
jobs:
test:
name: Run Tests
Expand Down

0 comments on commit a69a607

Please sign in to comment.