chore: sync files #286
This file contains hidden or 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: autoware-guideline-check | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| autoware-guideline-check: | |
| runs-on: ubuntu-22.04 | |
| container: ros:humble-ros-core-jammy | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Check out dependency | |
| run: | | |
| apt-get update && apt-get install -y python3-vcstool git | |
| mkdir -p dependency_ws | |
| vcs import dependency_ws < param_depends.repos | |
| shell: bash | |
| - name: Run autoware-guideline-check | |
| uses: autowarefoundation/[email protected] |