Skip to content

Dataops 1178 update checkqc for projman #97

Dataops 1178 update checkqc for projman

Dataops 1178 update checkqc for projman #97

Workflow file for this run

name: Run Unit Tests

Check failure on line 1 in .github/workflows/unit_tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/unit_tests.yml

Invalid workflow file

(Line: 11, Col: 11): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found., (Line: 18, Col: 25): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12','3.13']
name: Set up Python ${{ matrix.python-version }
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install -r requirements/dev .
- name: Launch tests
run: |
pytest --cov=checkQC --cov-report=xml tests/
- name: Update data on codecov
uses: codecov/codecov-action@v3