Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[#9246] fix for setuptools>=82 #1947

[#9246] fix for setuptools>=82

[#9246] fix for setuptools>=82 #1947

Workflow file for this run

name: Test
on:
push:
pull_request:
workflow_dispatch:
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }} # workflow limits it to this workflow, ref includes a pushed branch or on pull request merge branch
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
permissions: {}
jobs:
ruff:
name: Lint (Ruff)
uses: ./.github/workflows/ruff.yml # Call the reusable workflow
permissions:
contents: read
pyright:
name: Lint (PyRight)
uses: ./.github/workflows/pyright.yml # Call the reusable workflow
permissions:
contents: read
cypress:
name: Test (Cypress)
uses: ./.github/workflows/cypress.yml # Call the reusable workflow
permissions:
contents: read
docs:
name: Documentation
uses: ./.github/workflows/docs.yml # Call the reusable workflow
permissions:
contents: read
pytest:
name: Test (Pytest)
uses: ./.github/workflows/pytest.yml # Call the reusable workflow
permissions:
contents: read
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}