Skip to content

DEV: Bump pypa/gh-action-pypi-publish from 1.8.6 to 1.8.7 #7

DEV: Bump pypa/gh-action-pypi-publish from 1.8.6 to 1.8.7

DEV: Bump pypa/gh-action-pypi-publish from 1.8.6 to 1.8.7 #7

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
style:
name: Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pipx run flake8 fftl
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install -c .github/test-constraints.txt '.[test]'
- run: pytest
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pipx run build
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pipx run --spec '.[docs]' sphinx-build -W -b html docs _build/html