Skip to content

[pre-commit.ci] pre-commit autoupdate #290

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #290

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: python -m pip install tox
- run: python -m tox -e mypy
check-pacakge-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: python -m pip install tox
- run: python -m tox -e twine-check
test:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
py: ['3.7', '3.11']
name: "Run Tests on ${{ matrix.os }}, py${{ matrix.py }}"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- run: python -m pip install tox
- run: python -m tox -e py