feat: add NotiFly new project to the project card #4
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: testBuild workflow | |
on: | |
push: | |
branches: | |
- dev | |
pull_request: | |
branches: | |
- dev | |
workflow_dispatch: | |
jobs: | |
runBuild: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: hello world | |
run: echo "Hello World" | |
shell: bash | |
goodBye: | |
runs-on: ubuntu-latest | |
steps: | |
- name: goodbye world | |
run: echo "Bye world" | |
shell: bash |