Skip to content

Final audit: fix 15 tests, eliminate magic numbers, add video demo #7

Final audit: fix 15 tests, eliminate magic numbers, add video demo

Final audit: fix 15 tests, eliminate magic numbers, add video demo #7

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
backend-tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r backend/requirements.txt
- name: Run tests
run: python -m pytest backend/tests/ -v --tb=short
docker-build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t acm-orbital .