From f444db9a8c0bbb9641f21158cbdd7ede30a6613f Mon Sep 17 00:00:00 2001 From: meanmail Date: Wed, 18 Sep 2024 16:20:36 +0200 Subject: [PATCH] Adjust workflow triggers to include 'main' and 'develop' branches. The build.yml file now specifies that actions should be triggered on pushes to the 'main' and 'develop' branches. This change ensures that the workflows are built and tested on these key branches. --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0638fe08..b421dccb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,6 +2,9 @@ name: Python build on: push: + branches: + - main + - develop pull_request: concurrency: