⬆️ 🤖 - Why is it that we rejoice at a birth and grieve at a funeral It is because we #1656
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 |