Fix: remove warning about hesai AT128. #31
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: pre-commit-ansible | |
| on: | |
| pull_request: | |
| jobs: | |
| pre-commit-ansible: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Install Ansible Galaxy depends for ansible-lint | |
| run: | | |
| ansible-galaxy collection install -f -r ansible-galaxy-requirements.yaml | |
| - name: Run pre-commit | |
| uses: autowarefoundation/autoware-github-actions/pre-commit@v1 | |
| with: | |
| pre-commit-config: .pre-commit-config-ansible.yaml |