Skip to content

Commit

Permalink
Fix workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreibancioiu committed May 30, 2024
1 parent 11c35d0 commit b3b71f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Check code coverage

on:
push:
branches: ["main"]
branches: ["main", "feat/*"]
pull_request:
branches: ["main"]
branches: ["main", "feat/*"]
workflow_dispatch:

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Run linter

on:
push:
branches: ["main"]
branches: ["main", "feat/*"]
pull_request:
branches: ["main"]
branches: ["main", "feat/*"]
workflow_dispatch:

permissions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Run tests

on:
push:
branches: ["main"]
branches: ["main", "feat/*"]
pull_request:
branches: ["main"]
branches: ["main", "feat/*"]
workflow_dispatch:

jobs:
Expand Down

0 comments on commit b3b71f8

Please sign in to comment.