fixup neighbor regex and also allow multiple peers per interface #436
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: lint | |
# | |
# Documentation: | |
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions | |
# | |
on: [push, pull_request] # yamllint disable-line rule:truthy | |
jobs: | |
build: | |
name: lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
statuses: write | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run Lint | |
run: | | |
sudo apt update | |
sudo apt install -y luarocks shellcheck | |
luarocks --local --tree $HOME/.luarocks install luacheck | |
make lint |