Skip to content

fix(swap): Properly restore cursor and window view when swapping bufs #594

fix(swap): Properly restore cursor and window view when swapping bufs

fix(swap): Properly restore cursor and window view when swapping bufs #594

Workflow file for this run

name: Run All Checks
on:
push:
branches: [master, v3]
pull_request:
jobs:
checks:
name: Run Checks (${{ matrix.neovim-version }})
runs-on: ubuntu-latest
strategy:
matrix:
neovim-version: [ci, ci-nightly]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Setup Cachix
uses: cachix/cachix-action@v14
with:
name: nix-community
authToken: ""
- name: Run lints
run: nix develop .#${{ matrix.neovim-version }} --command just lint
- name: Check types
run: nix develop .#${{ matrix.neovim-version }} --command just typecheck
- name: Run tests
run: nix develop .#${{ matrix.neovim-version }} --command just test
dependabot-auto-merge:
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' && github.event_name == 'pull_request' }}
steps:
- run: |
gh pr review --approve "$PR_URL"
gh pr merge --squash --auto "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GH_PAT_TOKEN }}