Breaking!: Use gitcommit
and gitrebase
filetypes instead of custom
#3172
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
name: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
release: [stable, nightly] | |
os: [ubuntu-latest] | |
env: | |
CI: "1" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- uses: rhysd/action-setup-vim@v1 | |
with: | |
neovim: true | |
version: ${{ matrix.release }} | |
- name: Install Dependencies | |
run: | | |
git config --global core.compression 0 | |
git clone https://github.com/nvim-lua/plenary.nvim tmp/plenary | |
git clone https://github.com/nvim-telescope/telescope.nvim tmp/telescope | |
git clone https://github.com/sindrets/diffview.nvim tmp/diffview | |
git clone https://github.com/nvim-telescope/telescope-fzf-native.nvim tmp/telescope-fzf-native | |
cd tmp/telescope-fzf-native | |
make | |
- name: E2E Test | |
run: | | |
bundle exec rspec | |
- name: Unit Test | |
run: | | |
make test |