We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c64030 commit 2548546Copy full SHA for 2548546
1 file changed
.github/workflows/test_pipeline.yaml
@@ -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
24
+ echo "📁 Files in repository:"
25
+ ls -la
26
27
0 commit comments