Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

extended ci.yaml to support releases, just-in-case #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 11 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
name: Integration Test

# Much like mux-go, mux-php is in a spot where "releases" are kind of
# ignored by Packagist and there's that webhook to hit to say "crawl
# me and get a new release". As such we're in the "make sure the barn
# door closes properly" spot unless we want to go manually hit webhooks
# and I think it's probably better to leave well enough alone. However,
# we can at least have it report failures and give us an option for
# manually handling release failures.

on:
push:
branches:
- master
pull_request:
pull_request: {}
release:
types: [created]

jobs:
build:
Expand Down