Skip to content

Commit

Permalink
Run CI on PRs
Browse files Browse the repository at this point in the history
Forgot to enable CI for pull requests in #29

- Skip CI when updating only Markdown files
- With `workflow_dispatch` tests can be started from the Actions UI by maintainers
  • Loading branch information
dentarg authored Jul 6, 2022
1 parent b9ed2b8 commit 60efcc4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ name: CI

on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:

# GitHub Actions notes
# - outcome in step name so we can see it without having to expand logs
Expand Down

0 comments on commit 60efcc4

Please sign in to comment.