Skip to content

Commit

Permalink
ci: possible CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciech-kulik committed Feb 27, 2024
1 parent e16af8d commit d2a65b0
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Linting, Style, And Error Checking
name: Linting, Style, Error Checking

on:
push:
Expand All @@ -12,11 +12,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare
run: |
brew update
brew install luacheck
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Install
run: brew install luacheck
- name: Lint
run: make lint

Expand All @@ -25,11 +25,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare
run: |
brew update
brew install stylua
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Install
run: brew install stylua
- name: Check
run: make format-check

Expand All @@ -38,11 +37,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare
run: |
brew update
brew install lua-language-server
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Install
run: brew install lua-language-server
- name: Check
run: make lsp-check

Expand All @@ -53,6 +51,5 @@ jobs:
- uses: actions/checkout@v4
- name: Prepare
run: cargo install lemmy-help --features=cli

- name: Check
run: make help-check

0 comments on commit d2a65b0

Please sign in to comment.