Skip to content

Bump packaging from 23.0 to 23.1 #888

Bump packaging from 23.0 to 23.1

Bump packaging from 23.0 to 23.1 #888

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
tests:
name: Run Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest-cov pytest-mock responses pre-commit
- name: Run linting
run: pre-commit run -a
- name: Run tests
run: python -m pytest -v -m "not tgtg_api" --cov src/ --cov-report=xml
- uses: codecov/codecov-action@v3