Skip to content

deps(dev): bump the major-dependencies group with 1 update #27

deps(dev): bump the major-dependencies group with 1 update

deps(dev): bump the major-dependencies group with 1 update #27

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
test:
name: Setup and Test
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Checkout code
uses: actions/checkout@v4
with:
show-progress: false
- name: Install module
run: pip install .[tests]
- name: Test with pytest
run: pytest
- name: Report coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./cov.xml