testing workflow 1 #2
This file contains hidden or 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: | |
job_A: | |
name: Job A | |
runs-on: ubuntu-latest | |
steps: | |
- name: Running a command | |
run: echo "Hello, World!" | |
- name: Check OS configuration | |
run: | | |
echo "OS Name: ${{ runner.os }}" | |
uname -a | |
- name: List files | |
run: | | |
echo "Listing files in the current directory:" | |
ls -a | |
echo "Listing files in the home directory:" | |
ls -a ~ | |
echo "Listing files in the root directory:" | |
ls -a / |