Skip to content

Instantly share code, notes, and snippets.

@ekpangmichael
Last active September 26, 2019 08:32
Show Gist options
  • Save ekpangmichael/92ceca2f6c6784b48ba499bc7e5d6f30 to your computer and use it in GitHub Desktop.
Save ekpangmichael/92ceca2f6c6784b48ba499bc7e5d6f30 to your computer and use it in GitHub Desktop.
A sample github ci/cd workflow
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run a one-line script
run: echo Hello, world!
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment