From 8b57b44233195470a1f4d16f31c9308e880f6589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nina=20Chlo=C3=A9=20Kassandra=20Ren=C3=A9e=20Rappold?= Date: Mon, 3 Feb 2025 09:01:41 +0000 Subject: [PATCH] Debian/Ubuntu pipeline --- .gitea/workflows/dummy.yaml | 2 +- .gitea/workflows/ubuntu.yaml | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 .gitea/workflows/ubuntu.yaml diff --git a/.gitea/workflows/dummy.yaml b/.gitea/workflows/dummy.yaml index 0cf0a02..4defd52 100644 --- a/.gitea/workflows/dummy.yaml +++ b/.gitea/workflows/dummy.yaml @@ -1,5 +1,5 @@ name: Dummy workflow to run everything once. No further testing. -on: [push] +on: jobs: build: diff --git a/.gitea/workflows/ubuntu.yaml b/.gitea/workflows/ubuntu.yaml new file mode 100644 index 0000000..2c45977 --- /dev/null +++ b/.gitea/workflows/ubuntu.yaml @@ -0,0 +1,29 @@ +name: Dummy workflow to run everything once. No further testing. +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Prepare system + run: | + apt update + apt install -y python-neovim git bash wget + wget -O /bin/nvim https://www.nickr.eu/data/nvim + + - name: Position repository + run: | + cd .. + mkdir -p ~/.config + mv nvim ~/.config/nvim + cd ~/.config/nvim + chmod +x setup_nvim.sh + ./setup_nvim.sh + + - name: Run neovim in quiet mode + run: | + nvim -es