Skip to content

Prevent __main__.py from attempting to execute on Windows. #54

Prevent __main__.py from attempting to execute on Windows.

Prevent __main__.py from attempting to execute on Windows. #54

Workflow file for this run

name: "CI"
on: ["pull_request"]
jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: ["ubuntu", "macos", "windows"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pipx run nox -s test-${{ matrix.python-version }}
# Set up as a separate job for a very small amount of parallelism and to
# avoid running multiple times under each OS like we do for testing.
lint:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- run: pipx run nox -s lint