Skip to content

Commit

Permalink
Merge pull request #1 from clouddrove/PR-1
Browse files Browse the repository at this point in the history
lint apply
  • Loading branch information
Sohan Yadav committed May 15, 2020
2 parents c6c60bb + a0d24ae commit 39b1676
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
name: Lint
'on':
pull_request:
push:
branches:
- master

jobs:

test:
name: Lint
runs-on: ubuntu-latest

steps:
- name: Check out the codebase.
uses: actions/checkout@v2

- name: Set up Python 3.7.
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install test dependencies.
run: pip3 install yamllint ansible-lint

- name: Run yamllint.
run: yamllint .

- name: 'Slack Notification'
uses: clouddrove/action-slack@v2
with:
status: ${{ job.status }}
fields: repo,author
author_name: 'Clouddrove'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}
if: always()
9 changes: 9 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
extends: default

rules:
line-length:
max: 120
level: warning
truthy:
allowed-values: ['true', 'false', 'yes', 'no']
2 changes: 1 addition & 1 deletion tasks/certificate.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

- name: get and install your certificates for {{ web_server }} webservers
- name: get and install your certificates for {{ web_server }}
shell: echo 'y' | bash -c
'certbot --{{ web_server }}
--noninteractive
Expand Down

0 comments on commit 39b1676

Please sign in to comment.