File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Basic CI
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ jobs :
8+ build :
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - name : Checkout repository
13+ uses : actions/checkout@v4
14+
15+ - name : Run basic check
16+ run : echo "CI workflow is running successfully!"
Original file line number Diff line number Diff line change @@ -79,6 +79,18 @@ Includes basic Kubernetes YAML files to understand orchestration fundamentals.
7979### CI/CD
8080Demonstrates CI/CD concepts using GitHub Actions and automation workflows.
8181
82+ #### GitHub Actions CI Example
83+ This repository includes a ** basic GitHub Actions CI workflow** to help beginners understand Continuous Integration.
84+
85+ ** What this workflow does:**
86+ - Runs automatically on every push and pull request
87+ - Checks out the repository code
88+ - Runs a simple sanity check to confirm CI execution
89+
90+ ** Workflow location:**
91+ ``` text
92+ .github/workflows/ci.yml
93+
8294### Cloud
8395Focuses on cloud fundamentals, starting with AWS basics.
8496
You can’t perform that action at this time.
0 commit comments