second art forth commit #7
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: My first workflow | |
on: push | |
jobs: | |
first_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Welcome Message | |
run: echo "My First job" | |
- name: List all the files | |
run: ls | |
- name: Read the file | |
run: cat README.md |