Last active
September 26, 2019 08:32
-
-
Save ekpangmichael/92ceca2f6c6784b48ba499bc7e5d6f30 to your computer and use it in GitHub Desktop.
A sample github ci/cd workflow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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