⬆️ 🤖 - Q How many Harvard MBAs does it take to screw in a light bulb #1780
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: 👷Flow | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
workflow_dispatch: | |
merge_group: | |
jobs: | |
lint: | |
uses: mraniki/coding_toolset/.github/workflows/🦺Lint.yml@main | |
secrets: inherit | |
test: | |
needs: [lint] | |
uses: mraniki/coding_toolset/.github/workflows/🧪Test.yml@main | |
secrets: inherit | |
build: | |
needs: [lint] | |
uses: mraniki/coding_toolset/.github/workflows/🐍Build.yml@main | |
secrets: inherit | |
release: | |
needs: [build, test] | |
uses: mraniki/coding_toolset/.github/workflows/📦Release.yml@main | |
secrets: inherit |