Skip to content

Commit

Permalink
fixup! TEMP
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-reineke committed Aug 29, 2023
1 parent 42b75aa commit 169e182
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/pr_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ jobs:
with:
path: _neovim
key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }}
- name: Restore cache for lua LS
uses: actions/cache@v3
with:
path: _lua-ls
key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }}
# - name: Restore cache for lua LS
# uses: actions/cache@v3
# with:
# path: _lua-ls
# key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }}
- name: Prepare
run: |
test -d _neovim || {
Expand All @@ -72,7 +72,11 @@ jobs:
}
test -d _lua-ls || {
mkdir -p _lua-ls
curl -sL "https://github.com/LuaLS/lua-language-server/releases/download/3.7.0/lua-language-server-3.7.0-linux-x64.tar.gz" | tar xzf - --strip-components=1 -C "${PWD}/_lua-ls"
# curl -sL "https://github.com/LuaLS/lua-language-server/releases/download/3.7.0/lua-language-server-3.7.0-linux-x64.tar.gz" | tar xzf - --strip-components=1 -C "${PWD}/_lua-ls"
sudo apt-get update
sudo apt-get install -y ninja-build
git clone --depth 1 https://github.com/LuaLS/lua-language-server _lua-ls
cd _lua-ls && ./make.sh
}
- name: Run check
Expand Down

0 comments on commit 169e182

Please sign in to comment.