Revised it to align the items to the right using spaces. #857
This file contains hidden or 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: ci | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| version: [stable, nightly] | |
| vim_type: ['Vim', 'Neovim'] | |
| include: | |
| - vim_type: 'Vim' | |
| neovim: false | |
| - vim_type: 'Neovim' | |
| neovim: true | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - id: vim | |
| uses: rhysd/action-setup-vim@v1 | |
| with: | |
| version: ${{ matrix.version }} | |
| neovim: ${{ matrix.neovim }} | |
| - name: 'Setup vim-themis' | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: thinca/vim-themis | |
| path: vim-themis | |
| - name: Run tests | |
| env: | |
| THEMIS_VIM: ${{ steps.vim.outputs.executable }} | |
| run: | | |
| ./vim-themis/bin/themis ./test |