Skip to content

fix #83 in more universal way #174

fix #83 in more universal way

fix #83 in more universal way #174

name: ci_stdlib_only
on:
push:
paths:
- "**.py"
- .github/workflows/ci_stdlib_only.yml
- "!scripts/"
pull-request:
- "**.py"
- .github/workflows/ci_stdlib_only.yml
jobs:
stdlib_only:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: ['ubuntu-latest']
include:
- os: macos-latest
python-version: '3.11'
- os: windows-latest
python-version: '3.11'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install .[tests]
- run: pytest