Debian/Ubuntu pipeline
Dummy workflow to run everything once. No further testing. / build (push) Failing after 13s
Details
Dummy workflow to run everything once. No further testing. / build (push) Failing after 13s
Details
This commit is contained in:
parent
468dac7c0d
commit
8b57b44233
|
@ -1,5 +1,5 @@
|
||||||
name: Dummy workflow to run everything once. No further testing.
|
name: Dummy workflow to run everything once. No further testing.
|
||||||
on: [push]
|
on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue