# This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: tests on: push: pull_request: branches: [ master ] jobs: style: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.10 uses: actions/setup-python@v2 with: python-version: 3.10 - name: Install dependencies run: | python -m pip install --upgrade pip pip install .[all] - uses: pre-commit/action@v2.0.3 compatibility: needs: style strategy: fail-fast: false matrix: python-version: ["3.7", "3.8", "3.9", "3.10"] os: [ubuntu-latest, windows-latest] exclude: - os: windows-latest python-version: "3.7" - os: windows-latest python-version: "3.8" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install .[all] - name: Test with pytest run: | pytest publish_pypi: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') needs: compatibility runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.10 uses: actions/setup-python@v2 with: python-version: "3.10" - name: Install dependencies run: | python -m pip install --upgrade pip pip install .[all] pip install wheel - name: Build package run: python setup.py sdist bdist_wheel - name: Publish a Python distribution to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}