1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_goaccess.git synced 2024-08-16 18:09:23 +02:00

Update yamllint and ansible-lint

This commit is contained in:
L3D 2021-01-19 20:14:30 +01:00
parent d5f15917d0
commit 34e8c31bad
Signed by: l3d
GPG key ID: CD08445BFF4313D1
14 changed files with 91 additions and 76 deletions

4
.github/FUNDING.yml vendored
View file

@ -1,4 +1,6 @@
# Feel free to add yourself after && during participating at this repo!
---
# Feel free to add yourself if you maintain this repo
# or participate in a way that you have the feeling that you belong there ;-)
github: [do1jlr]
liberapay: L3D

View file

@ -1,5 +1,7 @@
---
name: Ansible check debian:buster
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check debian:latest
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check debian:stable
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check debian:stretch
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible Lint check
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check ubuntu:bionic
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:

View file

@ -1,5 +1,7 @@
---
name: Ansible check ubuntu:latest
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:

22
.github/workflows/yamllint.yaml vendored Normal file
View file

@ -0,0 +1,22 @@
---
name: 'Yamllint GitHub Actions'
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:
yamllint:
name: 'Yamllint'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@master
- name: 'Yamllint'
uses: karancode/yamllint-github-action@master
with:
yamllint_file_or_dir: '.'
yamllint_config_filepath: './.yamllint'
yamllint_strict: false
yamllint_comment: true
# env:
# GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }

View file

@ -1,31 +0,0 @@
---
language: python
python: "2.7"
# Use the new container infrastructure
sudo: false
# Install ansible
addons:
apt:
packages:
- python-pip
install:
# Install ansible
- pip install ansible
# Check ansible version
- ansible --version
# Create ansible.cfg with correct roles_path
- printf '[defaults]\nroles_path=../' >ansible.cfg
- printf '---\n- hosts: localhost\n remote_user: root\n roles:\n - .' >test.yml
- printf 'localhost' >hosts.ini
script:
# Basic role syntax check
- ansible-playbook test.yml -i hosts.ini --syntax-check
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/

8
.yamllint Normal file
View file

@ -0,0 +1,8 @@
---
extends: default
rules:
# 150 chars should be enough, but don't fail if a line is longer
line-length:
max: 150
level: warning

View file

@ -4,7 +4,7 @@
apt:
name: apt-transport-https
state: "{{ goaccess__state }}"
update_cache: yes
update_cache: true
- name: add goaccess apt_key
become: true
@ -24,5 +24,5 @@
apt:
name: goaccess
state: "{{ goaccess__state }}"
update_cache: yes
update_cache: true
cache_valid_time: 3600

View file

@ -13,7 +13,7 @@
src: "/etc/.ansible-version/{{ playbook_version_path }}"
register: playbook_version
when: submodules_versioncheck|bool
ignore_errors: yes
ignore_errors: true
failed_when: false
- name: Print remote role version

View file

@ -1,4 +1,4 @@
---
# versionscheck
playbook_version_number: 02 # should be a integer
playbook_version_path: 'role-<some_unique_string>.version'
playbook_version_number: 03 # should be a integer
playbook_version_path: 'role-goaccess_roles-ansible_github.version'