Skip to content

Commit 8ce4114

Browse files
Merge pull request #9 from Anusha0501/add-ci-github-actions
Add basic GitHub Actions CI workflow and documentation
2 parents 4544dce + e4b4fdd commit 8ce4114

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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!"

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,18 @@ Includes basic Kubernetes YAML files to understand orchestration fundamentals.
7979
### CI/CD
8080
Demonstrates 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
8395
Focuses on cloud fundamentals, starting with AWS basics.
8496

0 commit comments

Comments
 (0)