This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
Add switcher and reqs #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
check: | |
uses: ./.github/workflows/_check.yml | |
lint: | |
needs: check | |
if: ${{ ! needs.check.outputs.branch-pr }} | |
uses: ./.github/workflows/_tox.yml | |
with: | |
tox: pre-commit,pyright | |
test: | |
needs: check | |
if: ${{ ! needs.check.outputs.branch-pr }} | |
strategy: | |
matrix: | |
runs-on: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
include: | |
# Include one that runs in the dev environment | |
- runs-on: "ubuntu-latest" | |
python-version: "dev" | |
fail-fast: false | |
uses: ./.github/workflows/_test.yml | |
with: | |
runs-on: ${{ matrix.runs-on }} | |
python-version: ${{ matrix.python-version }} | |
container: | |
needs: check | |
if: ${{ ! needs.check.outputs.branch-pr }} | |
uses: ./.github/workflows/_container.yml | |
permissions: | |
packages: write | |
docs: | |
needs: check | |
if: ${{ ! needs.check.outputs.branch-pr }} | |
uses: ./.github/workflows/_docs.yml | |
pages: | |
if: github.ref_name == 'main' | |
needs: docs | |
uses: ./.github/workflows/_pages.yml | |
permissions: | |
pages: write | |
id-token: write | |
dist: | |
needs: check | |
if: ${{ ! needs.check.outputs.branch-pr }} | |
uses: ./.github/workflows/_dist.yml | |
pypi: | |
if: github.ref_type == 'tag' | |
needs: dist | |
uses: ./.github/workflows/_pypi.yml | |
permissions: | |
id-token: write | |
release: | |
if: github.ref_type == 'tag' | |
needs: [dist, docs] | |
uses: ./.github/workflows/_release.yml | |
permissions: | |
contents: write |