Skip to content

Merge branch 'feature/3-docker-kafka-broker' of github.com:cbdq-io/a-… #8

Merge branch 'feature/3-docker-kafka-broker' of github.com:cbdq-io/a-…

Merge branch 'feature/3-docker-kafka-broker' of github.com:cbdq-io/a-… #8

Workflow file for this run

---
name: CI
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
REGISTRY: ghcr.io
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Requirements
run: |
pip install -qr requirements.txt -r requirements-dev.txt
pip freeze
pip check
- name: Run Make
run: make
Trivy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: docker compose build router
- name: Scan Image
uses: aquasecurity/trivy-action@master
with:
image-ref: "router:latest"
trivy-config: trivy.yaml