Skip to content

final part 2

final part 2 #4

Workflow file for this run

name: Learn GitHub Actions
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run a one-line script
run: echo Hello, world!
- name: Run a multi-line script
run: |
echo Add another echo statement
echo Hello from the multi-line script!