Skip to content

Commit 2548546

Browse files
committed
Simple Pipeline testing
1 parent 9c64030 commit 2548546

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# .github/workflows/test-pipeline.yml
2+
3+
name: Test Pipeline
4+
5+
# Trigger on push to any branch and pull requests to main
6+
on:
7+
push:
8+
branches: [ "Pipeline" ]
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
16+
# Step 2: Print basic info
17+
- name: Print runner info
18+
run: |
19+
echo "🏃‍♂️ Runner OS: ${{ runner.os }}"
20+
21+
# Step 3: List files in repository
22+
- name: List repository files
23+
run: |
24+
echo "📁 Files in repository:"
25+
ls -la
26+
27+

0 commit comments

Comments
 (0)