Skip to content

Bump mypy from 1.11.1 to 1.11.2 (#551) #1132

Bump mypy from 1.11.1 to 1.11.2 (#551)

Bump mypy from 1.11.1 to 1.11.2 (#551) #1132

Workflow file for this run

name: Build the package
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.9"]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.3.2
- name: Install dependencies
run: poetry install
- name: Test package building
run: |
poetry build