Bump CP 7.2 version #631
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, pull_request] | |
jobs: | |
ansible-lint: | |
name: Ansible Lint | |
runs-on: ubuntu-latest | |
container: cytopia/ansible-lint:5 | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Ansible Lint code | |
run: ansible-lint -c .ansible-lint -qq --force-color *.yml | |
yamllint: | |
name: Yaml Lint | |
runs-on: ubuntu-latest | |
container: cytopia/yamllint:latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Yamllint code | |
run: yamllint -c .yamllint -f colored . |