Skip to content

Changed coverage problem input #46

Changed coverage problem input

Changed coverage problem input #46

Workflow file for this run

name: pytest
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# You can test your matrix by printing the current Python version
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest
- name: Install library
run: pip install . --verbose
- name: Test
run: pytest tests/
- name: Lint
run: |
pip install ruff
ruff --output-format=github .
continue-on-error: true