Skip to content

Commit

Permalink
fix(urlchecker): Added README.md + CHANGELOG.md as a checker
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinKennedy committed Oct 26, 2024
1 parent 8eb7b91 commit a4b7d41
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/urlchecker.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# TODO: (you) Make sure to update your file_types below to whatever makes sense for you.

name: URLChecker

on:
Expand All @@ -20,33 +22,34 @@ jobs:
uses: urlstechie/urlchecker-action@master
with:
subfolder: doc
# TODO: Check if I can just check all file types with an empty string for glob
file_types: .json,.lua,.md,.txt,.vim,.yml

- name: urlcheck - lua directory
uses: urlstechie/urlchecker-action@master
with:
subfolder: lua
# TODO: Check if I can just check all file types with an empty string for glob
file_types: .json,.lua,.md,.txt,.vim,.yml

- name: urlcheck - plugin directory
uses: urlstechie/urlchecker-action@master
with:
subfolder: plugin
# TODO: Check if I can just check all file types with an empty string for glob
file_types: .json,.lua,.md,.txt,.vim,.yml

- name: urlcheck - scripts directory
uses: urlstechie/urlchecker-action@master
with:
subfolder: scripts
# TODO: Check if I can just check all file types with an empty string for glob
file_types: .json,.lua,.md,.txt,.vim,.yml

- name: urlcheck - spec directory
uses: urlstechie/urlchecker-action@master
with:
subfolder: spec
# TODO: Check if I can just check all file types with an empty string for glob
file_types: .json,.lua,.md,.txt,.vim,.yml

- name: urlcheck - CHANGELOG.md + README.md
uses: urlstechie/urlchecker-action@master
with:
subfolder: .
include_files: CHANGELOG.md,README.md
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ A template repository used to create Neovim plugins.
- Auto-completes your commands at any cursor position
- No external dependencies[*](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/wiki/External-Dependencies-Disclaimer)
- [LuaCATS](https://luals.github.io/wiki/annotations/) annotations and type-hints, everywhere
- [RSS feed support](tracking-updates)
- [RSS feed support](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commits/main/doc/news.txt.atom)
- Built-in logging to stdout / files
- Unittests use the full power of native [busted](https://github.com/lunarmodules/busted)
- Automated testing matrix supports 6 Neovim/OS combinations
Expand Down

0 comments on commit a4b7d41

Please sign in to comment.