fix(ci): add dev branch to CI workflow triggers
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 0s
CI/CD Pipeline / Run Tests (push) Failing after 1s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped

This commit is contained in:
2026-02-02 12:49:06 +01:00
parent 3f222a9141
commit f68b4fbbf1

View File

@@ -2,9 +2,9 @@ name: CI/CD Pipeline
on: on:
push: push:
branches: [ main, develop ] branches: [ main, develop, dev ]
pull_request: pull_request:
branches: [ main, develop ] branches: [ main, develop, dev ]
env: env:
PYTHON_VERSION: "3.11" PYTHON_VERSION: "3.11"
@@ -105,7 +105,7 @@ jobs:
name: Push to Gitea Registry name: Push to Gitea Registry
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [build] needs: [build]
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/dev'
steps: steps:
- name: Checkout code - name: Checkout code