Update cuda_toolkit_install role #56
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: Ansible Lint | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: [main] | |
paths: | |
- 'roles/**' | |
pull_request: | |
branches: [main] | |
paths: | |
- 'roles/**' | |
jobs: | |
ansible-lint: | |
name: Ansible Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Lint Ansible Playbook | |
uses: ansible/ansible-lint-action@main | |
with: | |
path: "roles/" |