Regenerate nvim config
This commit is contained in:
1
config/neovim/store/lazy-plugins/telescope-fzf-native.nvim/.github/FUNDING.yml
vendored
Normal file
1
config/neovim/store/lazy-plugins/telescope-fzf-native.nvim/.github/FUNDING.yml
vendored
Normal file
@ -0,0 +1 @@
|
||||
github: Conni2461
|
||||
94
config/neovim/store/lazy-plugins/telescope-fzf-native.nvim/.github/workflows/ci.yml
vendored
Normal file
94
config/neovim/store/lazy-plugins/telescope-fzf-native.nvim/.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,94 @@
|
||||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
gcc:
|
||||
name: c build and tests
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
compiler: gcc
|
||||
- os: ubuntu-latest
|
||||
compiler: clang
|
||||
- os: macos-latest
|
||||
compiler: gcc
|
||||
- os: macos-latest
|
||||
compiler: clang
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Prepare
|
||||
env:
|
||||
CC: ${{ matrix.compiler }}
|
||||
run: |
|
||||
cc --version
|
||||
git clone https://github.com/Conni2461/examiner
|
||||
cd examiner
|
||||
make && sudo make install
|
||||
- name: Build
|
||||
env:
|
||||
CC: ${{ matrix.compiler }}
|
||||
LD_LIBRARY_PATH: /usr/lib:/usr/local/lib
|
||||
run: make
|
||||
- name: Tests
|
||||
env:
|
||||
CC: ${{ matrix.compiler }}
|
||||
LD_LIBRARY_PATH: /usr/lib:/usr/local/lib
|
||||
run: make test
|
||||
|
||||
windows:
|
||||
name: windows
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: lukka/get-cmake@latest
|
||||
- name: Build
|
||||
run: |
|
||||
cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
|
||||
cmake --build build --config Release
|
||||
cmake --install build --prefix build
|
||||
|
||||
nvim-tests:
|
||||
name: nvim-tests
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
rev: nightly/nvim-linux64.tar.gz
|
||||
- os: ubuntu-latest
|
||||
rev: v0.9.0/nvim-linux64.tar.gz
|
||||
- os: macos-latest
|
||||
rev: nightly/nvim-macos.tar.gz
|
||||
- os: macos-latest
|
||||
rev: v0.9.0/nvim-macos.tar.gz
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: date +%F > todays-date
|
||||
- name: Restore from todays cache
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: _neovim
|
||||
key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }}
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
test -d _neovim || {
|
||||
mkdir -p _neovim
|
||||
curl -sL "https://github.com/neovim/neovim/releases/download/${{ matrix.rev }}" | tar xzf - --strip-components=1 -C "${PWD}/_neovim"
|
||||
}
|
||||
mkdir -p ~/.local/share/nvim/site/pack/vendor/start
|
||||
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim
|
||||
ln -s $(pwd) ~/.local/share/nvim/site/pack/vendor/start
|
||||
- name: Build
|
||||
run: make
|
||||
- name: Tests
|
||||
run: |
|
||||
export PATH="${PWD}/_neovim/bin:${PATH}"
|
||||
export VIM="${PWD}/_neovim/share/nvim/runtime"
|
||||
nvim --version
|
||||
make ntest
|
||||
43
config/neovim/store/lazy-plugins/telescope-fzf-native.nvim/.github/workflows/lint.yml
vendored
Normal file
43
config/neovim/store/lazy-plugins/telescope-fzf-native.nvim/.github/workflows/lint.yml
vendored
Normal file
@ -0,0 +1,43 @@
|
||||
name: Linting and style checking
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
name: Lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install luarocks
|
||||
sudo luarocks install luacheck
|
||||
|
||||
- name: Lint
|
||||
run: make lint
|
||||
|
||||
clangformat:
|
||||
name: clangformat
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Prepare clang-format
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install clang-format
|
||||
- name: Format
|
||||
run: make format
|
||||
|
||||
stylua:
|
||||
name: stylua
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: JohnnyMorganz/stylua-action@v3
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
version: latest
|
||||
# CLI arguments
|
||||
args: --color always --check lua/
|
||||
Reference in New Issue
Block a user