Created
December 3, 2021 04:02
-
-
Save shafayathossain/329c530e78f82fa7c722a073333e55e9 to your computer and use it in GitHub Desktop.
Base structure of a github workflow file.
This file contains 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 workflow | |
# Events when the workflow will dispatch/run. | |
on: push | |
jobs: | |
# Define jobs and their steps that will be executed. | |
deploy: | |
steps: | |
# Define steps to complete the current job. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment