Skip to content

ci: initial CI configuration + added tools for quality standards #1

ci: initial CI configuration + added tools for quality standards

ci: initial CI configuration + added tools for quality standards #1

Workflow file for this run

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