Skip to content

Merge branch 'main' into find-contours #1086

Merge branch 'main' into find-contours

Merge branch 'main' into find-contours #1086

Workflow file for this run

name: "main"
on: ["push", "workflow_dispatch"]
jobs:
# * ------------------------------------------------------------------------------ * #
# * Changes below may be lost in significant template updates.
pyright:
runs-on: "ubuntu-latest"
steps:
- uses: "blakeNaccarato/[email protected]"
with:
python-version: "3.11"
- run: "pip install --no-deps --requirement .tools/requirements/requirements_nodeps.txt"
- run: "pyright"
pytest-cov:
permissions:
contents: "read"
id-token: "write"
runs-on: "ubuntu-latest"
steps:
- uses: "blakeNaccarato/[email protected]"
with:
python-version: "3.11"
- run: "pip install --no-deps --requirement .tools/requirements/requirements_nodeps.txt"
- uses: "google-github-actions/[email protected]"
with:
workload_identity_provider: "projects/326920613558/locations/global/workloadIdentityPools/github-com/providers/github-com-oidc"
service_account: "[email protected]"
- uses: "google-github-actions/[email protected]"
- run: "dvc pull"
env:
GH_TOKEN: ${{ github.token }}
- run: "pytest --cov"
env:
OPENCV_SAMPLES_DATA_PATH: data/samples
- uses: "codecov/[email protected]"
bump_project:
needs: ["pyright", "pytest-cov"]
runs-on: "ubuntu-latest"
steps:
- uses: "blakeNaccarato/[email protected]"
with:
python-version: "3.11"
install-project: false
- uses: "stefanzweifel/[email protected]"
with:
commit_message: "Bump project template and compose `pyproject.toml`."
# * ------------------------------------------------------------------------------ * #
# * Changes below should persist in significant template updates.