diff --git a/.github/workflows/black-lint.yml b/.github/workflows/black-lint.yml
index 17fe29d..0c71aef 100644
--- a/.github/workflows/black-lint.yml
+++ b/.github/workflows/black-lint.yml
@@ -6,6 +6,7 @@ on:
paths:
- '**/*.py'
pull_request:
+ branches: [main]
paths:
- '**/*.py'
diff --git a/.github/workflows/component_tests.yml b/.github/workflows/component_tests.yml
index 715a3ad..f4dba08 100644
--- a/.github/workflows/component_tests.yml
+++ b/.github/workflows/component_tests.yml
@@ -2,9 +2,9 @@ name: Component Tests
on:
push:
- branches: ["**"]
+ branches: [main, dev]
pull_request:
- branches: ["**"]
+ branches: [main]
jobs:
test:
diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml
index f26c91a..caaf5e4 100644
--- a/.github/workflows/integration_tests.yml
+++ b/.github/workflows/integration_tests.yml
@@ -2,9 +2,9 @@ name: Integration Tests
on:
push:
- branches: ["**"]
+ branches: [main, dev]
pull_request:
- branches: ["**"]
+ branches: [main]
jobs:
test:
diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml
index 2a59864..717af6f 100644
--- a/.github/workflows/unit_tests.yml
+++ b/.github/workflows/unit_tests.yml
@@ -2,9 +2,9 @@ name: Unit Tests
on:
push:
- branches: ["**"]
+ branches: [main, dev]
pull_request:
- branches: ["**"]
+ branches: [main]
jobs:
test:
diff --git a/README.md b/README.md
index 0c87c44..3b55098 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@