Skip to content

Commit

Permalink
Fix CI conditions
Browse files Browse the repository at this point in the history
It would otherwise not run in pull requests, but only
pushes to the current repo (which is what this commit
is)
  • Loading branch information
paulo-ferraz-oliveira committed Feb 29, 2024
1 parent 5d8042c commit 5752073
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
---
name: CI
'on':
- push
push:
branches:
- main
pull_request:
branches:
- "*"
workflow_dispatch: {}
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
---
name: Lint
'on':
- push
push:
branches:
- main
pull_request:
branches:
- "*"
workflow_dispatch: {}
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
Expand Down

0 comments on commit 5752073

Please sign in to comment.