Update the README to match the new default attached_to_untracked setting #2160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
commit_lint: | |
runs-on: ubuntu-latest | |
steps: | |
# Check commit messages | |
- uses: webiny/[email protected] | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
neovim_branch: | |
- 'v0.8.3' | |
- 'v0.9.5' | |
- 'nightly' | |
env: | |
NVIM_TEST_VERSION: ${{ matrix.neovim_branch }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: leafo/gh-actions-lua@v9 | |
with: | |
luaVersion: "5.1.5" | |
- uses: leafo/gh-actions-luarocks@v4 | |
- name: Download Nvim | |
run: make nvim | |
- name: Download Busted | |
run: make busted | |
- name: Run Test | |
run: make test | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download stylua | |
run: make stylua | |
- name: Lint | |
run: make stylua-check | |
doc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download Nvim | |
run: make nvim | |
- name: Doc Check | |
run: make doc-check |