Add make-artifact-tag.sh
Some checks failed
ci / ci (push) Failing after 3m7s

This commit is contained in:
2026-04-06 17:25:18 -06:00
parent b224053c0d
commit 6061630492
3 changed files with 108 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ jq = "1.8.1"
# installed. In the tests, we will override with `eval $(nvimv env VERSION)`,
# but to avoid having to litter a bunch of commands with that environment
# initialization, this just makes things simpler:
neovim = "0.12.0"
neovim = "0.12.1"
stylua = "2.3.1"
"cargo:emmylua_ls" = "0.20.0"
"cargo:emmylua_check" = "0.20.0"
@@ -79,12 +79,12 @@ arg "<version>" help="The version of Neovim to test with"
run = 'mise test:version:no-prep $usage_version'
[tasks."test"]
run = 'mise test:version 0.12.0'
run = 'mise test:version 0.12.1'
[tasks."test:all"]
depends = ["test:prepare"]
run = '''
VERSIONS="0.11.5 0.12.0 nightly"
VERSIONS="0.11.5 0.12.1 nightly"
for v in $VERSIONS; do
mise test:version:no-prep $v
done