Skip to content

Commit

Permalink
Allow rolling job to fail. Force install of known to work version of (#…
Browse files Browse the repository at this point in the history
…302)

pydocstyle. Schedule CI runs every night.
  • Loading branch information
esteve authored Mar 11, 2023
1 parent 087527e commit 37de108
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * *'

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -36,6 +38,7 @@ jobs:
ros_distribution: rolling
ros_version: 2
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.ros_distribution == 'rolling' }}
container:
image: ${{ matrix.docker_image }}
steps:
Expand All @@ -51,6 +54,10 @@ jobs:
with:
required-ros-distributions: ${{ matrix.ros_distribution }}

- name: Downgrade pydocstyle as a workaround for https://github.com/ament/ament_lint/issues/434
run: |
sudo pip install pydocstyle==6.1.1
- name: Setup Rust
uses: dtolnay/rust-toolchain@1.63.0
with:
Expand Down

0 comments on commit 37de108

Please sign in to comment.