Skip to content

Prep for 3.2.0 release #53

Prep for 3.2.0 release

Prep for 3.2.0 release #53

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Python environment
uses: actions/setup-python@v5
with:
python-version: 3.12
architecture: x64
- name: Install dependencies
run: pip install -e .[dev]
- name: Linting
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Check code format with Black
run: black --check us
testing:
needs: linting
runs-on: ubuntu-latest
strategy:
max-parallel: 6
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e .[dev]
- name: Test with pytest
run: |
pytest .
building:
needs: linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Python environment
uses: actions/setup-python@v5
with:
python-version: 3.12
architecture: x64
- name: Install dependencies
run: |
pip install setuptools build wheel
- name: Builds package
run: |
python -m build . -w -n
- uses: actions/upload-artifact@v4
with:
name: wheels
path: ./dist/*.whl