Test File

This commit is contained in:
Daniel Cosme
2026-02-13 14:33:24 -05:00
parent 74aae9c43e
commit da49fea96c

View File

@@ -14,5 +14,14 @@ jobs:
- name: Print Output - name: Print Output
run: echo 'output time is ${{ steps.use-go-action.outputs.time }}' run: echo 'output time is ${{ steps.use-go-action.outputs.time }}'
- name: Create File
run: "touch file.txt"
- name: Write to File
run: "echo 'hello' > file.txt"
- name: Who and Where am I - name: Who and Where am I
run: "ls -la && whoami && pwd" run: "ls -la && whoami && pwd"
- name: Read from File
run: "cat file.txt"