fix: #349 Forgot to bring over the default session lens config values, fix #352 current_session_name incorrectly displayed if git branch has forward slash #36
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
# From | |
# https://github.com/shortcuts/neovim-plugin-boilerplate/blob/main/.github/workflows/main.yml | |
name: tests | |
on: | |
push: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: lint | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: JohnnyMorganz/stylua-action@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: latest | |
args: --check . -g '*.lua' -g '!deps/' | |
test: | |
timeout-minutes: 2 | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
neovim_version: ["v0.7.2", "v0.8.3", "v0.9.5", "v0.10.1", "nightly"] | |
include: | |
- os: windows-latest | |
neovim_version: v0.10.1 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
# For sshing in to debug GH actions | |
# - name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v3 | |
# with: | |
# detached: true | |
- name: setup neovim | |
uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
version: ${{ matrix.neovim_version }} | |
- name: Run tests | |
run: make test |