Skip to content

Commit

Permalink
MAINT update when to trigger GHA workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
glemaitre committed May 1, 2024
1 parent 939a1cb commit ef9d685
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Linter

on: [push]
on:
pull_request_target:
types:
- opened
- edited
- synchronize

jobs:
build:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Unit Tests

on: [push]
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
Expand Down

0 comments on commit ef9d685

Please sign in to comment.