remove support for Ubuntu 18.04 #400
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, pull_request] | |
jobs: | |
stable-and-nightly: | |
name: Stable and nightly | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest, macos-12] | |
version: [stable, nightly] | |
neovim: [true, false] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: npm | |
- run: npm ci | |
- run: npm run build | |
- uses: ./ | |
with: | |
version: ${{ matrix.version }} | |
neovim: ${{ matrix.neovim }} | |
id: vim | |
- name: Validate action result | |
run: node ./scripts/post_action_check.js "${{ matrix.neovim }}" "${{ matrix.version }}" "${{ steps.vim.outputs.executable }}" | |
# separate from stable-and-nightly since jobs.{id}.name.strategy.matrix.exclude seems not working | |
vim-v8_2_1931: | |
name: Vim v8.2.1931 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: npm | |
- run: npm ci | |
- run: npm run build | |
- uses: ./ | |
with: | |
version: v8.2.1931 | |
id: vim | |
- name: Validate action result | |
run: node ./scripts/post_action_check.js "false" "v8.2.1931" "${{ steps.vim.outputs.executable }}" | |
nvim-v0_4_4: | |
name: Neovim v0.4.4 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: npm | |
- run: npm ci | |
- run: npm run build | |
- uses: ./ | |
with: | |
neovim: true | |
version: v0.4.4 | |
id: neovim | |
- name: Validate action result | |
run: node ./scripts/post_action_check.js "true" "v0.4.4" "${{ steps.neovim.outputs.executable }}" | |
# See #10 for more details. Vim older than 8.2.1119 cannot be built with Xcode 12 or later. | |
vim-v8_1_2424-mac: | |
name: Vim v8.1.2424 on macOS | |
runs-on: macos-11 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: npm | |
- run: npm ci | |
- run: npm run build | |
- uses: ./ | |
with: | |
version: v8.1.2424 | |
configure-args: | | |
--with-features=huge --enable-fail-if-missing --disable-nls | |
id: vim | |
- name: Validate action result | |
run: node ./scripts/post_action_check.js "false" "v8.1.2424" "${{ steps.vim.outputs.executable }}" | |
test-and-lint: | |
name: Check unit tests and linter | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, macos-12] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: npm | |
- run: npm ci | |
- name: Run unit tests | |
run: npm test | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- run: npm run lint | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- run: pip install yamllint | |
- run: yamllint --strict .github/workflows | |
- name: Check workflow files | |
run: | | |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | |
./actionlint -color |