Skip to content

Merge pull request #6 from sheriferson/chore/generalize-classes-prep #43

Merge pull request #6 from sheriferson/chore/generalize-classes-prep

Merge pull request #6 from sheriferson/chore/generalize-classes-prep #43

Workflow file for this run

name: scrobble tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pip install pytest pytest-cov
pip install -e .
python -m pytest --cov=scrobble --cov-report=xml --cov-report=html
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}