diff --git a/.github/workflows/cratesio-publish.yml b/.github/workflows/cratesio-publish.yml index ee5d4ad..d70c0d0 100644 --- a/.github/workflows/cratesio-publish.yml +++ b/.github/workflows/cratesio-publish.yml @@ -1,6 +1,8 @@ name: publish crates on: + push: + pull_request: release: # "released" events are emitted either when directly be released or be edited from pre-released. types: [prereleased, released] diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index 3e57084..32c6586 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -1,5 +1,7 @@ name: Spellcheck -on: [push] +on: + - push + - pull_request permissions: contents: read jobs: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bcbd9db..53058ed 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,7 @@ name: tests -on: [push] +on: + - push + - pull_request jobs: check: