Adds the ability to set the update rate of the simulation (#264) #1144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: style | |
on: | |
pull_request: | |
push: | |
branches: [ main ] | |
jobs: | |
linter: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
docker_image: ['ros:rolling-ros-base'] | |
container: | |
image: ${{ matrix.docker_image }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: deps | |
shell: bash | |
run: | | |
sudo apt update && sudo apt install pycodestyle | |
- name: pycodestyle | |
shell: bash | |
run: | | |
pycodestyle . |