Skip to content

fix: fix a doc typo in the exceptions section (#10) #18

fix: fix a doc typo in the exceptions section (#10)

fix: fix a doc typo in the exceptions section (#10) #18

Workflow file for this run

name: Execute lint and tests
on:
workflow_call:
push:
jobs:
tests:
runs-on: ubuntu-latest
services:
elasticmq:
image: softwaremill/elasticmq-native
ports:
- 9324:9324
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Install system dependencies
run: sudo apt update && sudo apt install --no-install-recommends -y make git
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/.cache
key: self-runner-${{ runner.os }}-python-${{ matrix.python-version }}-poetry-${{ hashFiles('poetry.lock') }}-precommit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry config virtualenvs.create false
poetry install
- name: pre-commit lint
run: make lint
- name: pytest
run: make test