Skip to content

Commit 8cce758

Browse files
committed
test github CI
1 parent bace6d8 commit 8cce758

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/basic-test.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Basic Test
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
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+
run: |
27+
echo "Workspace contents:"
28+
ls -la
29+
30+
- name: Check for ROS packages
31+
run: |
32+
echo "Looking for ROS packages..."
33+
find . -name "package.xml" | head -10

0 commit comments

Comments
 (0)