Skip to content

Merge pull request #73 from kurtmckee/sort-code-owners-case-insensiti… #269

Merge pull request #73 from kurtmckee/sort-code-owners-case-insensiti…

Merge pull request #73 from kurtmckee/sort-code-owners-case-insensiti… #269

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