ci: added cache + removed unnecessary steps #4
Workflow file for this run
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: Quality Checks | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
lint: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install | |
run: /home/linuxbrew/.linuxbrew/bin/brew install luacheck | |
- name: Lint | |
run: make lint | |
format-check: | |
name: Format Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install | |
run: /home/linuxbrew/.linuxbrew/bin/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: Install | |
run: /home/linuxbrew/.linuxbrew/bin/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: Cache cargo modules | |
id: cache-cargo | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-cargo-modules | |
with: | |
path: ~/.cargo | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/CACHEDIR.TAG') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- if: ${{ steps.cache-cargo.outputs.cache-hit != 'true' }} | |
name: Prepare | |
run: cargo install lemmy-help --features=cli | |
- name: Check | |
run: make help-check |