Skip to content

build(deps): bump the ci-dependencies group with 1 update #127

build(deps): bump the ci-dependencies group with 1 update

build(deps): bump the ci-dependencies group with 1 update #127

Workflow file for this run

name: Pull Request Events
on: pull_request
permissions:
contents: write
id-token: write
pull-requests: write
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: 🐍 Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: ⬇️ Checkout code
uses: actions/checkout@v4
- name: 📥 Install project
run: pip install -e .[tests]
- name: 🧪 Test with pytest
run: pytest
- name: 📞 Report coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./cov.xml