Skip to content

Bump the all group across 1 directory with 3 updates #70

Bump the all group across 1 directory with 3 updates

Bump the all group across 1 directory with 3 updates #70

Workflow file for this run

---
name: CI/CD
on:
pull_request:
branches:
- '*'
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check if version changed
uses: rmariano/action-pr-version-check@master
with:
file: pyproject.toml
branch: main
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Run tests and collect coverage
run: |
python -m pip install poetry
make install
make test
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}