We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bace6d8 commit 8cce758Copy full SHA for 8cce758
.github/workflows/basic-test.yml
@@ -0,0 +1,33 @@
1
+name: Basic Test
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ basic-test:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
17
+ - name: Echo basic info
18
+ run: |
19
+ echo "🎉 GitHub Actions runner is working!"
20
+ echo "Current directory: $(pwd)"
21
+ echo "Repository: ${{ github.repository }}"
22
+ echo "Branch: ${{ github.ref_name }}"
23
+ echo "Event: ${{ github.event_name }}"
24
25
+ - name: List workspace contents
26
27
+ echo "Workspace contents:"
28
+ ls -la
29
30
+ - name: Check for ROS packages
31
32
+ echo "Looking for ROS packages..."
33
+ find . -name "package.xml" | head -10
0 commit comments