Skip to content

build(deps-dev): bump bandit from 1.8.0 to 1.8.2 #252

build(deps-dev): bump bandit from 1.8.0 to 1.8.2

build(deps-dev): bump bandit from 1.8.0 to 1.8.2 #252

Workflow file for this run

name: Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install poetry
poetry install
- run: poetry run pytest --cov=lssr --cov-report=term-missing --cov-report=xml
- uses: codecov/codecov-action@v5
with:
files: ./coverage.xml
fail_ci_if_error: false