Skip to content

Update inspect_python_black.yml #29

Update inspect_python_black.yml

Update inspect_python_black.yml #29

name: Test
on:
push:
branches: [ 'master' ]
pull_request:
branches: [ 'master' ]
workflow_dispatch:
permissions:
contents: read
jobs:
complete_regression:

Check failure on line 14 in .github/workflows/test_complete_regression.yml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test_complete_regression.yml (Line: 14, Col: 3): The workflow must contain at least one job with no dependencies.
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
pip install -r worker/source/requirements.txt
- name: Run unit tests
if: always()
run: |
cd worker/source/
pytest -vv --durations=0 -s -m unit
- name: Run integration tests
if: always()
run: |
cd worker/source/
pytest -vv --durations=0 -s -m integration
- name: Run system tests
if: always()
run: |
cd worker/source/
pytest -vv --durations=0 -s -m system