fad3t called this workflow #4
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 | |
run-name: ${{ github.actor }} called this workflow | |
on: [push] | |
jobs: | |
first-job: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "this is the first step of my job, let's check out the repository.." | |
- name: check out code | |
uses: actions/checkout@v4 | |
- run: echo "and now we list files!" | |
- name: list files | |
run: | | |
ls ${{ github.workspace }} |