Skip to content

dependencies: (deps): bump the actions group across 1 directory with 4 updates #185

dependencies: (deps): bump the actions group across 1 directory with 4 updates

dependencies: (deps): bump the actions group across 1 directory with 4 updates #185

Workflow file for this run

name: ci
on:
push:
pull_request:
branches: [main, dev]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check-out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '>= 3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[tests,dev]"
- name: Run tests with coverage
run: |
pytest --cov --cov-branch --cov-report=xml
- name: flake8 Lint
uses: py-actions/flake8@v2
with:
max-line-length: "100"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}