We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f19d44e commit 0e0c1e5Copy full SHA for 0e0c1e5
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,25 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ interop_test:
11
+ name: Interop tests with ROS 2 Jazzy
12
+ runs-on: ubuntu-latest
13
+ container:
14
+ image: rostooling/setup-ros-docker:ubuntu-noble-ros-jazzy-ros-base-latest
15
+ steps:
16
+ - name: Install Node.js
17
+ run: apt-get update && apt-get install -y nodejs
18
+ - name: ROS dependencies
19
+ run: apt-get install -y ros-jazzy-example-interfaces
20
+ - uses: actions/checkout@v4
21
+ - uses: actions-rust-lang/setup-rust-toolchain@v1
22
+ - name: Run ROS tests
23
+ shell: bash
24
+ # Note that we limit only one test item tested at the same time to avoid the confliction between bridges
25
+ run: "source /opt/ros/jazzy/setup.bash && cd ros-z && cargo test --all-features --verbose"
0 commit comments