Skip to content

build(deps): bump setuptools from 67.7.1 to 67.7.2 #122

build(deps): bump setuptools from 67.7.1 to 67.7.2

build(deps): bump setuptools from 67.7.1 to 67.7.2 #122

Workflow file for this run

name: run-tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '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: Generate Report
run: |
pip install coverage
coverage run -m unittest discover tests/
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}