We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 087527e commit 37de108Copy full SHA for 37de108
.github/workflows/rust.yml
@@ -5,6 +5,8 @@ on:
5
branches: [ main ]
6
pull_request:
7
8
+ schedule:
9
+ - cron: '0 0 * * *'
10
11
env:
12
CARGO_TERM_COLOR: always
@@ -36,6 +38,7 @@ jobs:
36
38
ros_distribution: rolling
37
39
ros_version: 2
40
runs-on: ubuntu-latest
41
+ continue-on-error: ${{ matrix.ros_distribution == 'rolling' }}
42
container:
43
image: ${{ matrix.docker_image }}
44
steps:
@@ -51,6 +54,10 @@ jobs:
51
54
with:
52
55
required-ros-distributions: ${{ matrix.ros_distribution }}
53
56
57
+ - name: Downgrade pydocstyle as a workaround for https://github.com/ament/ament_lint/issues/434
58
+ run: |
59
+ sudo pip install pydocstyle==6.1.1
60
+
61
- name: Setup Rust
62
uses: dtolnay/[email protected]
63
0 commit comments