Skip to content

Commit

Permalink
chore: prevent double lint & coverage run for PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Freisler committed Mar 13, 2021
1 parent 0564742 commit ba76d46
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/lint.yml
@@ -1,5 +1,11 @@
name: Lint
on: [push, pull_request]
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
lint:
name: Lint
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/test-coverage.yml
@@ -1,5 +1,11 @@
name: Test coverage
on: [push, pull_request]
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test-coverage:
name: Test coverage
Expand Down

0 comments on commit ba76d46

Please sign in to comment.