last 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: First Workflow | |
on: | |
- push | |
jobs: | |
first_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: List and Read files | |
run: | | |
echo "My first GitHub Actions Job Today" | |
ls -1 | |
cat Dockerfile |