Test - Workflow #1
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: 'Test - Workflow' | |
on: | |
workflow_dispatch: | |
jobs: | |
myFirst: | |
name: "My first job" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Hello world | |
run: echo "Hello world" |