Skip to content

docs(filesystem): update filtered items section #2211

docs(filesystem): update filtered items section

docs(filesystem): update filtered items section #2211

Workflow file for this run

name: CI
on:
push:
branches:
- main
- v1.x
- v2.x
- v3.x
pull_request:
workflow_dispatch:
jobs:
stylua-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
uses: JohnnyMorganz/stylua-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
args: --color always --check lua/
plenary-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
rev: ["0.8", "0.9", "0.10", "0.11"]
os: [ubuntu-22.04]
include:
- rev: "latest"
os: [windows-latest]
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
install: true # [default: true] run `mise install`
install_args: "neovim@${{matrix.rev}}" # [default: ""] additional arguments to `mise install`
- run: |
mise use neovim@${{matrix.rev}}
make setup
make test
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v2