enable ingress for vault #84
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: lint | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
- 'release-*' | |
pull_request: | |
branches: | |
- 'release-*' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Run shell check | |
uses: ludeeus/action-shellcheck@master | |
- name: Run yaml lint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
config_file: '.config/.yamllint.yml' | |
- name: Run ansible lint | |
uses: ansible/ansible-lint@v6 |