This commit is contained in:
43
.gitea/workflows/tests.yaml
Normal file
43
.gitea/workflows/tests.yaml
Normal file
@@ -0,0 +1,43 @@
|
||||
name: tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "**"
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install Neovim AppImage
|
||||
shell: bash
|
||||
run: |
|
||||
set -euo pipefail
|
||||
arch="$(uname -m)"
|
||||
if [ "${arch}" = "aarch64" ]; then
|
||||
appimage="nvim-linux-arm64.appimage"
|
||||
else
|
||||
appimage="nvim-linux-x86_64.appimage"
|
||||
fi
|
||||
url="https://github.com/neovim/neovim/releases/download/stable/${appimage}"
|
||||
curl -L "${url}" -o "${appimage}"
|
||||
chmod +x "${appimage}"
|
||||
./${appimage} --appimage-extract
|
||||
sudo install -m 0755 ./squashfs-root/usr/bin/nvim /usr/local/bin/nvim
|
||||
|
||||
- name: Neovim Version
|
||||
run: nvim --version
|
||||
|
||||
- name: Install plenary.nvim
|
||||
shell: bash
|
||||
run: |
|
||||
set -euo pipefail
|
||||
target_dir="${HOME}/.local/share/nvim/site/pack/vendor/start/plenary.nvim"
|
||||
mkdir -p "$(dirname "${target_dir}")"
|
||||
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim "${target_dir}"
|
||||
|
||||
- name: Run Tests
|
||||
run: bash run_test.sh
|
||||
Reference in New Issue
Block a user