Skip to content

Commit

Permalink
Fix test not to run on both push and pull_request for PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
davereid authored Dec 7, 2023
1 parent 1277125 commit 56bfc81
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
on: [push, pull_request, workflow_dispatch]
name: tests

on:
pull_request:
merge_group:
types: [checks_requested]
push:
branches:
- 'main'
workflow_dispatch:
schedule:
- cron: 0 0 * * *

jobs:
test:
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 56bfc81

Please sign in to comment.