Remove leftover molecule files #219
Workflow file for this run
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: Linting | |
on: [push] | |
jobs: | |
ansible-lint: | |
name: Ansible lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up VCS checkout | |
uses: actions/checkout@v3 | |
# TODO file Issue about making configurable | |
- name: Copy ansible dependency file to location expected by ansible-lint | |
run: cp requirements.yaml requirements.yml | |
- name: Run ansible-lint | |
uses: ansible/ansible-lint-action@v6.11.0 |