mirror of
https://github.com/ansible-community/awesome-ansible.git
synced 2024-10-01 11:49:27 -04:00
4468fceb78
* add 'awesome-lint' github action * modifies README.md to adheer to awesome-lint * removes travis.yml as it has been replaced with an GH action * fix a typo in CONTRIBUTING.md Guideline
16 lines
275 B
YAML
16 lines
275 B
YAML
---
|
|
name: Awesome readme lint
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
branches:
|
|
- master
|
|
jobs:
|
|
Awesome_Lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- run: npx awesome-lint
|