Skip to content

⬆️ Bump bandit[toml] from 1.8.0 to 1.8.2 #66

⬆️ Bump bandit[toml] from 1.8.0 to 1.8.2

⬆️ Bump bandit[toml] from 1.8.0 to 1.8.2 #66

Workflow file for this run

name: run-tests
on:
push:
paths:
- '**.py'
- '.github/workflows/run-tests.yml'
- 'pyproject.toml'
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 5
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
python: ["3.10", "3.11", "3.12"]
name: ${{ matrix.python }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flit
flit install --deps develop
- name: Execute tests
run: python3 -m pytest