Skip to content

Update test.yaml

Update test.yaml #5

Workflow file for this run

name: test workflow
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
hello:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: hello world
run: echo "hello world"
shell: bash
goodbye:
runs-on: ubuntu-latest
steps:
- name: good bye
run: echo "it is the end"
shell: bash