Skip to content

fix(ci): filter release notes to only feat and fix commits #12

fix(ci): filter release notes to only feat and fix commits

fix(ci): filter release notes to only feat and fix commits #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: JohnnyMorganz/stylua-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
args: --check lua/ tests/
- uses: NTBBloodbath/selene-action@v1.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: lua/
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
neovim: ['v0.10.0', 'stable', 'nightly']
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.neovim }}
- name: Install chafa
run: sudo apt-get install -y chafa
- name: Install test dependencies
run: make deps
- name: Run tests
run: make test