Skip to content

chore(deps-dev): bump safety from 3.2.6 to 3.2.7 #1288

chore(deps-dev): bump safety from 3.2.6 to 3.2.7

chore(deps-dev): bump safety from 3.2.6 to 3.2.7 #1288

Workflow file for this run

name: Run unit tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }} test
steps:
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Update pip and install pipx
run: |
pip install -U pip nox poetry-plugin-export yamllint
pip --version
nox --version
poetry --version
poetry self show plugins
yamllint --version
- name: Run unit tests with nox
run: |
nox --sessions tests --python ${{ matrix.python-version }}