Skip to content

Block CL if 'song' in prompt #5

Block CL if 'song' in prompt

Block CL if 'song' in prompt #5

Workflow file for this run

concurrency:
group: unit-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest --ignore e2e --ignore src/attribution