Try changing shell #35
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: CI | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
vim: | |
- 'v9.0.2189' | |
- 'v8.2.4286' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install coverage dependencies | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libcurl4-openssl-dev libelf-dev libdw-dev cmake kcov | |
- uses: thinca/action-setup-vim@v1 | |
with: | |
vim_version: ${{ matrix.vim }} | |
- name: Ensure vim installed | |
run: vim --version | |
- name: Smoke test of vims | |
run: echo "Hello" | ./vims '' | |
- name: Run tests | |
run: VIMS=$PWD/vims ./test/bats/bin/bats ./test/test.bats |