Use python3 venv which is recommended for adhering with PEP 668. #19
Workflow file for this run
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: Flowzone | |
on: | |
pull_request: | |
types: [opened, synchronize, closed] | |
branches: [main, master] | |
pull_request_target: | |
types: [opened, synchronize, closed] | |
branches: [main, master] | |
jobs: | |
flowzone: | |
name: Flowzone | |
if: | | |
(github.event.pull_request.head.repo.full_name == github.repository && github.event_name == 'pull_request') || | |
(github.event.pull_request.head.repo.full_name != github.repository && github.event_name == 'pull_request_target') | |
uses: product-os/flowzone/.github/workflows/flowzone.yml@master | |
secrets: inherit | |
with: {} |