aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2025-05-06 23:51:15 +0200
committerGitHub <noreply@github.com>2025-05-06 23:51:15 +0200
commitb2e59268c904bc5bfe44dfc0e7935a236be73fea (patch)
treed1fa11c4b758f8789e605b2ef71acc1dc1315489 /.github
parentdocs: fix changelog header link (diff)
downloadmason-lspconfig-b2e59268c904bc5bfe44dfc0e7935a236be73fea.tar
mason-lspconfig-b2e59268c904bc5bfe44dfc0e7935a236be73fea.tar.gz
mason-lspconfig-b2e59268c904bc5bfe44dfc0e7935a236be73fea.tar.bz2
mason-lspconfig-b2e59268c904bc5bfe44dfc0e7935a236be73fea.tar.lz
mason-lspconfig-b2e59268c904bc5bfe44dfc0e7935a236be73fea.tar.xz
mason-lspconfig-b2e59268c904bc5bfe44dfc0e7935a236be73fea.tar.zst
mason-lspconfig-b2e59268c904bc5bfe44dfc0e7935a236be73fea.zip
ci: fix cbfmt & selene, add nvim v0.11.1, and fix incorrect test fixtures (#540)
* ci: fix cbfmt and add nvim v0.11.1 * just remove cbfmt * tests: fix test fixtures and setup
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cbfmt.yml33
-rw-r--r--.github/workflows/selene.yml2
-rw-r--r--.github/workflows/tests.yml1
3 files changed, 2 insertions, 34 deletions
diff --git a/.github/workflows/cbfmt.yml b/.github/workflows/cbfmt.yml
deleted file mode 100644
index e59deba..0000000
--- a/.github/workflows/cbfmt.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: cbfmt check
-
-on:
- push:
- branches:
- - "main"
- pull_request:
-
-jobs:
- cbfmt:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Download cbfmt
- run: |
- mkdir /tmp/cbfmt && cd $_
- curl -fsSL -o cbfmt.tar.gz "https://github.com/lukas-reineke/cbfmt/releases/download/v0.2.0/cbfmt_linux-x86_64_v0.2.0.tar.gz"
- tar --strip-components 1 -xvf cbfmt.tar.gz
- mv cbfmt /usr/local/bin/
- - name: Download Stylua
- run: |
- mkdir /tmp/stylua && cd $_
- curl -fsSL -o stylua.zip "https://github.com/JohnnyMorganz/StyLua/releases/download/v0.18.0/stylua-linux.zip"
- unzip -d /usr/local/bin stylua.zip
- - name: Download Shellharden
- run: |
- mkdir /tmp/shellharden && cd $_
- curl -fsSL -o shellharden.tar.gz https://github.com/alsuren/cargo-quickinstall/releases/download/shellharden-4.2.0-x86_64-unknown-linux-gnu/shellharden-4.2.0-x86_64-unknown-linux-gnu.tar.gz
- tar -xvf shellharden.tar.gz
- mv shellharden /usr/local/bin/
- - name: Run cbfmt check
- # Lua examples in README.md doesn't conform to Stylua rules, on purpose.
- run: find . -name '*.md' -not -path './dependencies/*' -not -path './README.md' | xargs cbfmt --check
diff --git a/.github/workflows/selene.yml b/.github/workflows/selene.yml
index 1486c9c..fb87d50 100644
--- a/.github/workflows/selene.yml
+++ b/.github/workflows/selene.yml
@@ -16,5 +16,5 @@ jobs:
with:
# token is needed because the action allegedly downloads binary from github releases
token: ${{ secrets.GITHUB_TOKEN }}
- args: lua/ tests/ scripts/
+ args: lua/ tests/
version: 0.25.0
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 2936692..44af09c 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -15,6 +15,7 @@ jobs:
matrix:
nvim_version:
- v0.11.0
+ - v0.11.1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2