diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 149498d..eeabe57 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -7,7 +7,7 @@ jobs: strategy: matrix: - os: [ubuntu-22.04] + os: [ubuntu-20.04] steps: - name: Checkout code @@ -16,18 +16,7 @@ jobs: - name: Prepare system run: | apt-get update -qy - apt install -y libc6 cmake gcc make - - - name: Install dependencies - run: | - mkdir -p /bin - if [ "$(uname -m)" == "x86_64" ]; then - wget -O ~/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage - chmod +x ~/nvim - else - wget -O ~/nvim https://www.nickr.eu/data/nvim - chmod +x ~/nvim - fi + apt install -y neovim python3-nvim - name: Load plugin into neovim run: | @@ -36,4 +25,4 @@ jobs: - name: Run neovim run: | - ~/nvim -es + nvim -es