Fix docker service stop #165
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: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2 | |
- name: write vault_pass to file | |
run: echo $VAULT_PASS >> vault_pass.txt | |
shell: bash | |
env: | |
VAULT_PASS : ${{ secrets.VAULT_PASS }} | |
- name: lint ansible playbooks | |
uses: ansible-community/[email protected] | |
with: | |
args: "playbooks/*" |