Skip to content

Commit

Permalink
second
Browse files Browse the repository at this point in the history
  • Loading branch information
cohama committed Dec 7, 2024
1 parent 7a7afb6 commit b647400
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,43 +13,43 @@ on:
- temp

jobs:
strategy:
matrix:
editor:
- Vim
- Neovim

os:
- ubuntu-24.04
- ubuntu-22.04
- ubuntu-20.04

include:
- editor: Vim
installation: ""
cmd: vim
- editor: Neovim
installation: sudo apt update -y && sudo apt install -y neovim
cmd: nvim

test:
name: test with ${{ matrix.editor }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
editor:
- Vim
- Neovim

os:
- ubuntu-24.04
- ubuntu-22.04
- ubuntu-20.04

include:
- editor: Vim
installation: ""
cmd: vim
- editor: Neovim
installation: sudo apt update -y && sudo apt install -y neovim
cmd: nvim
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4

- name: Install
run: ${{ matrix.installation }}
sudo apt update -y
sudo apt install -y neovim
- name: Install
run: ${{ matrix.installation }}
sudo apt update -y
sudo apt install -y neovim

- name: Install vim-themis
run: git clone https://github.com/thinca/vim-themis
- name: Install vim-themis
run: git clone https://github.com/thinca/vim-themis

- name: Show version
run: ${{ matix.cmd }} --version
- name: Show version
run: ${{ matix.cmd }} --version

- name: Run tests
env: THEMIS_VIM=${{ matrix.cmd }}
run: vim-themis/bin/themis --reporter spec
- name: Run tests
env: THEMIS_VIM=${{ matrix.cmd }}
run: vim-themis/bin/themis --reporter spec

0 comments on commit b647400

Please sign in to comment.