Skip to content

Bump more-itertools from 10.4.0 to 10.5.0 #704

Bump more-itertools from 10.4.0 to 10.5.0

Bump more-itertools from 10.4.0 to 10.5.0 #704

Workflow file for this run

name: Unit tests
on: push
jobs:
container_job:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.12.4 ]
container: python:${{ matrix.python-version }}-slim
steps:
# Downloads a copy of the code in your repository before running CI tests
- name: Check out repository code
uses: actions/checkout@v4
- name: Install dependencies
run: |
apt update
apt install -y curl git
python -m pip install --upgrade pip
pip install -e '.[dev]'
python setup.py gen_code
- name: Run Unit tests
run: pytest --cov-report term-missing --cov-report=xml --cov=src tests
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: ./coverage.xml
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}