We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad2deeb commit 3db7e2dCopy full SHA for 3db7e2d
.github/workflows/build-and-test-ros2-noble.yml
@@ -0,0 +1,25 @@
1
+name: Docker Image CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Build the Docker image and start the container
18
+ run: docker compose up -d
19
+ working-directory: ./docker/noble-ros2
20
+ - name: Compile the library
21
+ run: docker compose exec dev ./scripts/build.bash
22
23
+ - name: Run tests
24
+ run: docker compose exec dev ./scripts/test.bash
25
0 commit comments