1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_restic.git synced 2024-12-11 23:41:32 +01:00

improve linting

This commit is contained in:
L3D 2021-03-23 16:35:44 +01:00
parent cebb2cc6b4
commit 9dc223b12c
Signed by: l3d
GPG key ID: CD08445BFF4313D1
8 changed files with 67 additions and 58 deletions

View file

@ -1,3 +1,4 @@
---
style: github style: github
template: CHANGELOG.tpl.md template: CHANGELOG.tpl.md
info: info:

View file

@ -1,22 +1,20 @@
--- ---
name: 🌌 Galaxy import name: Galaxy release
# yamllint disable-line rule:truthy
on: on:
push: push:
branches: branches: ['main']
- master
release: release:
types: types: ['created']
- published
jobs: jobs:
import: build:
name: 🚀 Galaxy Action
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: galaxy - name: galaxy
uses: robertdebock/galaxy-action@1.1.1 uses: robertdebock/galaxy-action@1.1.0
with: with:
galaxy_api_key: ${{ secrets.GALAXY_API_KEY }} galaxy_api_key: ${{ secrets.galaxy_api_key }}

View file

@ -1,5 +1,6 @@
--- ---
name: 🎭 Tests name: 🎭 Tests
# yamllint disable-line rule:truthy
on: on:
push: push:
paths: paths:

1
.gitignore vendored
View file

@ -1 +1,2 @@
.cache
.DS_Store .DS_Store

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