docs: add 'xml2lua' to embedded library section #995
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: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
commits: | |
name: Commits | |
if: ${{ github.ref != 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: JohnnyMorganz/stylua-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: latest | |
args: --config-path .stylua.toml ./lua ./spec | |
- name: Add _system.lua | |
if: ${{ github.ref != 'refs/heads/main' }} | |
run: | | |
echo "pwd" | |
echo $PWD | |
git clone --depth=1 https://github.com/neovim/neovim.git ~/.neovim | |
cp ~/.neovim/runtime/lua/vim/_system.lua ./lua/commons/_system.lua | |
sed -i 's/vim.uv/vim.uv or vim.loop/g' ./lua/commons/_system.lua | |
sed -i '1 i\---@diagnostic disable' ./lua/commons/_system.lua | |
- name: Add uri.lua | |
if: ${{ github.ref != 'refs/heads/main' }} | |
run: | | |
echo "pwd" | |
echo $PWD | |
cp ~/.neovim/runtime/lua/vim/uri.lua ./lua/commons/_uri.lua | |
sed -i '1 i\---@diagnostic disable' ./lua/commons/_uri.lua | |
- name: Add async.lua | |
if: ${{ github.ref != 'refs/heads/main' }} | |
run: | | |
echo "pwd" | |
echo $PWD | |
git clone --depth=1 https://github.com/lewis6991/async.nvim.git ~/.async | |
cp ~/.async/lua/async.lua ./lua/commons/async.lua | |
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, undefined-doc-name' ./lua/commons/async.lua | |
- name: Add color.hsl.lua | |
if: ${{ github.ref != 'refs/heads/main' }} | |
run: | | |
echo "pwd" | |
echo $PWD | |
curl -k -L http://sputnik.freewisdom.org/files/colors-8.05.26.tar.gz -o ~/.colors.tar.gz | |
tar zxf ~/.colors.tar.gz | |
echo 'ls -lh' | |
ls -lh | |
rm -rf ./lua/commons/color/hsl.lua | |
cp -rf ./colors-8.05.26/lua/colors.lua ./lua/commons/color/hsl.lua | |
rm -rf ./colors-8.05.26 | |
sed -i '1 i\---@diagnostic disable' ./lua/commons/color/hsl.lua | |
- name: Add xml2lua.lua | |
if: ${{ github.ref != 'refs/heads/main' }} | |
run: | | |
echo "pwd" | |
echo $PWD | |
git clone --depth=1 https://github.com/manoelcampos/xml2lua.git ~/.xml2lua | |
cp ~/.xml2lua/xml2lua.lua ./lua/commons/xml2lua.lua | |
cp ~/.xml2lua/XmlParser.lua ./lua/commons/XmlParser.lua | |
echo 'ls -lh' | |
ls -lh | |
rm -rf ./lua/commons/xmlhandler | |
mkdir -p ./lua/commons/xmlhandler | |
cp -f ~/.xml2lua/xmlhandler/dom.lua ./lua/commons/xmlhandler/dom.lua | |
cp -f ~/.xml2lua/xmlhandler/tree.lua ./lua/commons/xmlhandler/tree.lua | |
cp -f ~/.xml2lua/xmlhandler/print.lua ./lua/commons/xmlhandler/print.lua | |
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, param-type-mismatch, discard-returns, undefined-global' ./lua/commons/xmlhandler/dom.lua | |
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, param-type-mismatch, discard-returns, undefined-global' ./lua/commons/xmlhandler/tree.lua | |
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, param-type-mismatch, discard-returns, undefined-global' ./lua/commons/xmlhandler/print.lua | |
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, param-type-mismatch, discard-returns, undefined-global' ./lua/commons/xml2lua.lua | |
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, param-type-mismatch, discard-returns, undefined-global' ./lua/commons/XmlParser.lua | |
sed -i 's/require("XmlParser/require("commons.XmlParser/g' ./lua/commons/xml2lua.lua | |
sed -i 's/require("xmlhandler/require("commons.xmlhandler/g' ./lua/commons/xml2lua.lua | |
sed -i 's/require("xmlhandler/require("commons.xmlhandler/g' ./lua/commons/XmlParser.lua | |
- uses: cargo-bins/cargo-binstall@main | |
- name: Selene | |
run: | | |
cargo binstall --no-confirm selene | |
selene --config selene.toml ./lua | |
- uses: stevearc/nvim-typecheck-action@v2 | |
with: | |
path: lua | |
configpath: ".luarc.json" | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
if: ${{ github.ref != 'refs/heads/main' }} | |
with: | |
commit_message: "chore(pr): auto-commit" | |
push_options: "--force" | |
unit_test: | |
name: Unxi Test | |
needs: | |
- lint | |
strategy: | |
matrix: | |
include: | |
- nvim_version: stable | |
os: ubuntu-latest | |
- nvim_version: nightly | |
os: ubuntu-latest | |
- nvim_version: v0.9.0 | |
os: ubuntu-latest | |
- nvim_version: stable | |
os: macos-latest | |
- nvim_version: nightly | |
os: macos-latest | |
- nvim_version: v0.9.0 | |
os: macos-latest | |
- nvim_version: stable | |
os: windows-latest | |
- nvim_version: nightly | |
os: windows-latest | |
- nvim_version: v0.9.0 | |
os: windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: rhysd/action-setup-vim@v1 | |
id: vim | |
with: | |
neovim: true | |
version: ${{ matrix.nvim_version }} | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- uses: leafo/gh-actions-lua@v10 | |
with: | |
luaVersion: "luajit-2.1.0-beta3" | |
if: ${{ !startsWith(matrix.os, 'windows') }} | |
- uses: leafo/gh-actions-luarocks@v4 | |
if: ${{ !startsWith(matrix.os, 'windows') }} | |
- uses: notomo/action-setup-nvim-lua@v1 | |
if: ${{ startsWith(matrix.os, 'windows') }} | |
- name: Run Test Cases | |
run: | | |
luarocks install luacov | |
luarocks --lua-version=5.1 install vusted | |
vusted --coverage ./spec | |
- name: Check Coverage Reports | |
if: ${{ !startsWith(matrix.os, 'windows') }} | |
run: | | |
echo "ls ." | |
ls -l . | |
echo "run luacov" | |
luacov | |
echo "ls ." | |
ls -l . | |
echo "cat ./luacov.report.out" | |
cat ./luacov.report.out | |
- uses: codecov/codecov-action@v4 | |
if: ${{ !startsWith(matrix.os, 'windows') }} | |
with: | |
files: luacov.report.out | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
release: | |
name: Release | |
if: ${{ github.ref == 'refs/heads/main' }} | |
needs: | |
- unit_test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
- uses: nvim-neorocks/luarocks-tag-release@v5 | |
if: ${{ steps.release.outputs.release_created }} | |
env: | |
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} | |
with: | |
version: ${{ steps.release.outputs.tag_name }} | |
labels: | | |
neovim | |
vim |