Reduce build size by dropping scipy in favor of opencv-contrib-python… #167
This file contains hidden or 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
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
name: printenv | |
on: | |
workflow_dispatch: # Allows manual builds | |
inputs: | |
excludeBuildNumber: | |
description: "Exclude build number" | |
required: true | |
default: false | |
type: boolean | |
push: | |
branches: | |
- main | |
env: | |
GITHUB_HEAD_REPOSITORY: ${{ github.event.pull_request.head.repo.full_name }} | |
GITHUB_EXCLUDE_BUILD_NUMBER: ${{ inputs.excludeBuildNumber }} | |
jobs: | |
printenv: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: printenv |