Skip to content

Feature: Configure CI/CD #2

Feature: Configure CI/CD

Feature: Configure CI/CD #2

Workflow file for this run

name: Hello world 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: goodbye world
run: echo "Goodbye world"
shell: bash