Debian/Ubuntu pipeline
Dummy workflow to run everything once. No further testing. / build (push) Failing after 13s Details

This commit is contained in:
Nina Chloé Kassandra Reiss 2025-02-03 09:01:41 +00:00
parent 468dac7c0d
commit 8b57b44233
2 changed files with 30 additions and 1 deletions

View File

@ -1,5 +1,5 @@
name: Dummy workflow to run everything once. No further testing.
on: [push]
on:
jobs:
build:

View File

@ -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