Skip to content

Bump mypy from 1.7.1 to 1.8.0 #81

Bump mypy from 1.7.1 to 1.8.0

Bump mypy from 1.7.1 to 1.8.0 #81

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- 'main'
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
poetry-version: ["1.3.2"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Run tests
run: poetry run pytest