30 lines
625 B
YAML
30 lines
625 B
YAML
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 python3-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
|