ci: initial CI configuration + added tools for quality standards #1
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: Linting, Style, And Error Checking | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
lint: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare | |
run: | | |
brew update | |
brew install luacheck | |
- name: Lint | |
run: make lint | |
format-check: | |
name: Format Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare | |
run: | | |
brew update | |
brew install stylua | |
- name: Check | |
run: make format-check | |
lsp-check: | |
name: LSP Error Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare | |
run: | | |
brew update | |
brew install lua-language-server | |
- name: Check | |
run: make lsp-check | |
help-check: | |
name: Help Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare | |
run: cargo install lemmy-help --features=cli | |
- name: Check | |
run: make help-check |