Skip to content

Merge pull request #29 from doziestar/main #88

Merge pull request #29 from doziestar/main

Merge pull request #29 from doziestar/main #88

Workflow file for this run

# trunk-ignore-all(checkov/CKV2_GHA_1)
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build Docker Compose
run: make build
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: pip install .
- name: Install pytest
run: pip install pytest pytest-cov pytest-asyncio pytest-mock pytest-alembic "pytest-mock-resources[docker]==2.10.2"
- name: Run Unit Tests
run: make test