diff --git a/.github/workflows/first-example.yml b/.github/workflows/first-example.yml new file mode 100644 index 0000000..6adfeb5 --- /dev/null +++ b/.github/workflows/first-example.yml @@ -0,0 +1,17 @@ +name: My First Workflow + +on: push + +jobs: + first_job: + runs-on: ubuntu-latest + steps: + - name: Welcome message + run: echo "My first Github Actions job" + + - name: List files + run: ls + + - name: Read file + run: cat README.md + \ No newline at end of file