Fixed test flow
CI/CD Pipeline / test-backend (push) Failing after 35s
CI/CD Pipeline / test-frontend (push) Successful in 20s
CI/CD Pipeline / build-docker (backend) (push) Has been skipped
CI/CD Pipeline / build-docker (frontend) (push) Has been skipped

This commit is contained in:
2026-07-11 19:04:48 +02:00 Verified
parent 9d571e59cb
commit 37cea7c097
+3 -3
View File
@@ -2,7 +2,7 @@ name: CI/CD Pipeline
on: on:
push: push:
branches: ['main'] # Runs tests on every push to main branches: ["main"] # Runs tests on every push to main
release: release:
types: [published] # Runs builds only when a release is published types: [published] # Runs builds only when a release is published
@@ -11,7 +11,7 @@ jobs:
test-backend: test-backend:
if: github.event_name == 'push' if: github.event_name == 'push'
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: python:3.14-alpine container: python:3.14
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Run Tests - name: Run Tests
@@ -64,4 +64,4 @@ jobs:
context: ./${{ matrix.service }} context: ./${{ matrix.service }}
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}