ci: merge workflow jobs and add makefile
This commit is contained in:
parent
7033d52db0
commit
ca2560cae8
12 changed files with 86 additions and 51 deletions
1
.github/nvim_doc_tools
vendored
1
.github/nvim_doc_tools
vendored
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit d146f2b7e72892b748e21d40a175267ce2ac1b7b
|
|
||||||
4
.github/pre-commit
vendored
4
.github/pre-commit
vendored
|
|
@ -1,5 +1,3 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
luacheck lua tests
|
make fastlint
|
||||||
|
|
||||||
stylua --check .
|
|
||||||
|
|
|
||||||
11
.github/pre-push
vendored
Executable file
11
.github/pre-push
vendored
Executable file
|
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
IFS=' '
|
||||||
|
while read local_ref _local_sha _remote_ref _remote_sha; do
|
||||||
|
remote_main=$( (git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null || echo "///master") | cut -f 4 -d / | tr -d "[:space:]")
|
||||||
|
local_ref_short=$(echo "$local_ref" | cut -f 3 -d / | tr -d "[:space:]")
|
||||||
|
if [ "$local_ref_short" = "$remote_main" ]; then
|
||||||
|
make lint
|
||||||
|
make test
|
||||||
|
fi
|
||||||
|
done
|
||||||
2
.github/workflows/install_nvim.sh
vendored
2
.github/workflows/install_nvim.sh
vendored
|
|
@ -3,7 +3,7 @@ set -e
|
||||||
PLUGINS="$HOME/.local/share/nvim/site/pack/plugins/start"
|
PLUGINS="$HOME/.local/share/nvim/site/pack/plugins/start"
|
||||||
mkdir -p "$PLUGINS"
|
mkdir -p "$PLUGINS"
|
||||||
|
|
||||||
wget "https://github.com/neovim/neovim/releases/download/${NVIM_TAG}/nvim.appimage"
|
wget "https://github.com/neovim/neovim/releases/download/${NVIM_TAG-stable}/nvim.appimage"
|
||||||
chmod +x nvim.appimage
|
chmod +x nvim.appimage
|
||||||
./nvim.appimage --appimage-extract >/dev/null
|
./nvim.appimage --appimage-extract >/dev/null
|
||||||
rm -f nvim.appimage
|
rm -f nvim.appimage
|
||||||
|
|
|
||||||
42
.github/workflows/tests.yml
vendored
42
.github/workflows/tests.yml
vendored
|
|
@ -1,6 +1,12 @@
|
||||||
name: Tests
|
name: Tests
|
||||||
|
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
luacheck:
|
luacheck:
|
||||||
|
|
@ -17,7 +23,7 @@ jobs:
|
||||||
sudo luarocks install luacheck
|
sudo luarocks install luacheck
|
||||||
|
|
||||||
- name: Run Luacheck
|
- name: Run Luacheck
|
||||||
run: luacheck .
|
run: luacheck lua tests
|
||||||
|
|
||||||
stylua:
|
stylua:
|
||||||
name: StyLua
|
name: StyLua
|
||||||
|
|
@ -29,7 +35,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
version: v0.15.2
|
version: v0.15.2
|
||||||
args: --check .
|
args: --check lua tests
|
||||||
|
|
||||||
typecheck:
|
typecheck:
|
||||||
name: typecheck
|
name: typecheck
|
||||||
|
|
@ -62,6 +68,35 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
bash ./run_tests.sh
|
bash ./run_tests.sh
|
||||||
|
|
||||||
|
update_docs:
|
||||||
|
name: Update docs
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install Neovim and dependencies
|
||||||
|
run: |
|
||||||
|
bash ./.github/workflows/install_nvim.sh
|
||||||
|
|
||||||
|
- name: Update docs
|
||||||
|
run: |
|
||||||
|
python -m pip install pyparsing==3.0.9
|
||||||
|
make doc
|
||||||
|
- name: Commit changes
|
||||||
|
if: ${{ github.ref == 'refs/heads/master' }}
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
COMMIT_MSG: |
|
||||||
|
[docgen] Update docs
|
||||||
|
skip-checks: true
|
||||||
|
run: |
|
||||||
|
git config user.email "actions@github"
|
||||||
|
git config user.name "Github Actions"
|
||||||
|
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
||||||
|
git add README.md doc
|
||||||
|
# Only commit and push if we have changes
|
||||||
|
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin HEAD:${GITHUB_REF})
|
||||||
|
|
||||||
release:
|
release:
|
||||||
name: release
|
name: release
|
||||||
|
|
||||||
|
|
@ -71,6 +106,7 @@ jobs:
|
||||||
- stylua
|
- stylua
|
||||||
- typecheck
|
- typecheck
|
||||||
- run_tests
|
- run_tests
|
||||||
|
- update_docs
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: google-github-actions/release-please-action@v3
|
- uses: google-github-actions/release-please-action@v3
|
||||||
|
|
|
||||||
35
.github/workflows/update-docs.yml
vendored
35
.github/workflows/update-docs.yml
vendored
|
|
@ -1,35 +0,0 @@
|
||||||
name: Update docs
|
|
||||||
|
|
||||||
on: push
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update-readme:
|
|
||||||
name: Update docs
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
submodules: true
|
|
||||||
|
|
||||||
- name: Install Neovim and dependencies
|
|
||||||
env:
|
|
||||||
NVIM_TAG: v0.9.0
|
|
||||||
run: |
|
|
||||||
bash ./.github/workflows/install_nvim.sh
|
|
||||||
|
|
||||||
- name: Update docs
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
COMMIT_MSG: |
|
|
||||||
[docgen] Update docs
|
|
||||||
skip-checks: true
|
|
||||||
run: |
|
|
||||||
git config user.email "actions@github"
|
|
||||||
git config user.name "Github Actions"
|
|
||||||
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
|
||||||
python -m pip install pyparsing==3.0.9
|
|
||||||
python .github/main.py generate
|
|
||||||
python .github/main.py lint
|
|
||||||
git add README.md doc
|
|
||||||
# Only commit and push if we have changes
|
|
||||||
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin HEAD:${GITHUB_REF})
|
|
||||||
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -42,3 +42,5 @@ luac.out
|
||||||
.direnv/
|
.direnv/
|
||||||
.testenv/
|
.testenv/
|
||||||
doc/tags
|
doc/tags
|
||||||
|
scripts/nvim_doc_tools
|
||||||
|
scripts/nvim-typecheck-action
|
||||||
|
|
|
||||||
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -1,3 +0,0 @@
|
||||||
[submodule ".github/nvim_doc_tools"]
|
|
||||||
path = .github/nvim_doc_tools
|
|
||||||
url = https://github.com/stevearc/nvim_doc_tools
|
|
||||||
27
Makefile
Normal file
27
Makefile
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
.PHONY: all doc test lint fastlint clean
|
||||||
|
|
||||||
|
all: doc lint test
|
||||||
|
|
||||||
|
doc: scripts/nvim_doc_tools
|
||||||
|
python scripts/main.py generate
|
||||||
|
python scripts/main.py lint
|
||||||
|
|
||||||
|
test:
|
||||||
|
./run_tests.sh
|
||||||
|
|
||||||
|
lint: scripts/nvim-typecheck-action fastlint
|
||||||
|
./scripts/nvim-typecheck-action/typecheck.sh --workdir scripts/nvim-typecheck-action lua
|
||||||
|
|
||||||
|
fastlint: scripts/nvim_doc_tools
|
||||||
|
python scripts/main.py lint
|
||||||
|
luacheck lua tests --formatter plain
|
||||||
|
stylua --check lua tests
|
||||||
|
|
||||||
|
scripts/nvim_doc_tools:
|
||||||
|
git clone https://github.com/stevearc/nvim_doc_tools scripts/nvim_doc_tools
|
||||||
|
|
||||||
|
scripts/nvim-typecheck-action:
|
||||||
|
git clone https://github.com/stevearc/nvim-typecheck-action scripts/nvim-typecheck-action
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf scripts/nvim_doc_tools scripts/nvim-typecheck-action
|
||||||
10
doc/oil.txt
10
doc/oil.txt
|
|
@ -3,11 +3,11 @@
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
CONTENTS *oil-contents*
|
CONTENTS *oil-contents*
|
||||||
|
|
||||||
1. Options.....................................................|oil-options|
|
1. Options |oil-options|
|
||||||
2. Api.............................................................|oil-api|
|
2. Api |oil-api|
|
||||||
3. Columns.....................................................|oil-columns|
|
3. Columns |oil-columns|
|
||||||
4. Actions.....................................................|oil-actions|
|
4. Actions |oil-actions|
|
||||||
5. Highlights...............................................|oil-highlights|
|
5. Highlights |oil-highlights|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
OPTIONS *oil-options*
|
OPTIONS *oil-options*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue