Skip to content

chore(deps-dev): Bump mypy from 1.11.2 to 1.13.0 #1795

chore(deps-dev): Bump mypy from 1.11.2 to 1.13.0

chore(deps-dev): Bump mypy from 1.11.2 to 1.13.0 #1795

Workflow file for this run

# SPDX-FileCopyrightText: AISEC Pentesting Team
#
# SPDX-License-Identifier: CC0-1.0
# https://github.com/actions/setup-python/issues/374
#
name: tests
on:
push:
branches:
- master
pull_request:
paths:
- '.github/**'
- 'src/**'
- 'tests/**'
jobs:
pytest:
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v9
- uses: actions/cache@v4
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}-${{ hashFiles('pyproject.toml') }}
- name: Install Dependencies
run: |
poetry install
- name: Run pytest
run: |
poetry run make pytest
bats:
strategy:
fail-fast: false
runs-on: ubuntu-latest
container: debian:stable
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}-${{ hashFiles('pyproject.toml') }}
- name: Install Dependencies
run: |
apt-get update -y && apt-get install -y bats python3 python3-poetry jq zstd
poetry install
- name: Run bats
run: |
poetry run make bats