Skip to content

✨ Incident Infrastructure Improvements #3

✨ Incident Infrastructure Improvements

✨ Incident Infrastructure Improvements #3

Workflow file for this run

name: Test Code
on: [pull_request]
jobs:
test_code:
name: Test Code Runner
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Test Code
run: |
pip install -r requirements.txt
pip install -e .
python -m unittest