Skip to content

add: package ratings and malicious reports and logging #162

add: package ratings and malicious reports and logging

add: package ratings and malicious reports and logging #162

Workflow file for this run

name: Run Tests for Backend
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout page source
uses: actions/checkout@v4
- name: Build the Docker image and run tests
run: docker compose -f "backend/compose.test.yaml" up -d
- name: Print Logs for Container
run: |
export CONTAINER_ID=$(docker ps -aqf "name=backend-test_ci-1")
docker logs -f $CONTAINER_ID 2>&1 | grep -i "FAILED" && exit 1 || exit 0
- name: Stop and remove the container
run: docker compose -f "backend/compose.test.yaml" down