Skip to content

fad3t called this workflow #4

fad3t called this workflow

fad3t called this workflow #4

Workflow file for this run

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 }}