Skip to content

chore: bump actions/checkout v4 → v6 #5

chore: bump actions/checkout v4 → v6

chore: bump actions/checkout v4 → v6 #5

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: JohnnyMorganz/stylua-action@v4
with:
token: ${{ github.token }}
version: 2.4.0
args: --check lua/ plugin/ tests/
test:
runs-on: ubuntu-latest
strategy:
matrix:
neovim: [v0.10.0, stable]
steps:
- uses: actions/checkout@v6
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.neovim }}
- name: Clone plenary.nvim
run: |
git clone --depth 1 --branch v0.1.4 \
https://github.com/nvim-lua/plenary.nvim \
~/.local/share/nvim/lazy/plenary.nvim
- name: Run tests
run: make test