Initial dev for this project (#4) #3
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: Continous Integration - Main | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'README.md' | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
secret: | |
name: Call Secret Scanning | |
uses: irishlab-io/admin/.github/workflows/reusable-secret.yml@main | |
secrets: inherit | |
pre-commit: | |
needs: | |
- secret | |
name: Call Pre-Commit for private repo | |
uses: irishlab-io/admin/.github/workflows/reusable-pre-commit.yml@main | |
hello-world: | |
needs: | |
- pre-commit | |
- secret | |
name: Call Hello World | |
uses: irishlab-io/admin/.github/workflows/reusable-hello-world.yml@main | |
with: | |
comments: "4321tset" | |
enable: false |