Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@ name: CI

on:
push:
branches: [ main ]
pull_request:
# Filtering push to main means a feature branch no longer runs CI on push -- its PR
# does. workflow_dispatch keeps a deliberate way to run the matrix on a branch, which
# is the capability the filter would otherwise silently remove.
workflow_dispatch:

jobs:
build-and-test:
Expand Down
Loading