Skip to content

Commit

Permalink
Github Actions: only on push to main (#1916)
Browse files Browse the repository at this point in the history
  • Loading branch information
Conengmo authored Apr 3, 2024
1 parent 7a7b6ad commit 3ec6ad6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test_code.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Code Tests

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

jobs:
run:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test_latest_branca.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Code Tests with Latest branca

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

jobs:
run:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test_mypy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Mypy type hint checks

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

jobs:
run:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test_selenium.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Selenium Tests

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

jobs:
run:
Expand Down

0 comments on commit 3ec6ad6

Please sign in to comment.