Skip to content

Run conda-build also on main CI #3

Run conda-build also on main CI

Run conda-build also on main CI #3

Workflow file for this run

name: Pull Request
on:
pull_request:
jobs:
setup:
uses: ./.github/workflows/setup.yml
formatting:
needs: setup
uses: ./.github/workflows/formatting.yml
with:
python-version: ${{ needs.setup.outputs.min_python }}
tests:
# name: Tests
needs: [setup, formatting]
strategy:
matrix:
os: ['ubuntu-22.04']
python:
- version: '${{needs.setup.outputs.min_python}}'
tox-env: '${{needs.setup.outputs.min_tox_env}}'
uses: ./.github/workflows/test.yml
with:
os-variant: ${{ matrix.os }}
python-version: ${{ matrix.python.version }}
tox-env: ${{ matrix.python.tox-env }}
secrets: inherit
docs:
needs: tests
uses: ./.github/workflows/docs.yml
with:
publish: false
linkcheck: false
branch: ${{ github.ref_name }}
# branch: ${{ github.head_ref == '' && github.ref_name || github.head_ref }}
secrets: inherit