Fix log level and error handling #137
Workflow file for this run
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
on: [pull_request] | |
name: default | |
env: | |
IMAGE_NAME: nvim-devcontainer-cli | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
neovim-version: | |
[ | |
"v0.9.0", | |
"v0.9.1", | |
"v0.9.2", | |
"v0.9.4", | |
"v0.9.5", | |
"v0.10.0", | |
"v0.10.1", | |
"v0.10.2", | |
"v0.10.3", | |
"stable", | |
] | |
fail-fast: false | |
name: NEOVIM ${{ matrix.neovim-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Pre-build devcontainer image for NEOVIM ${{ matrix.neovim-version }} | |
uses: devcontainers/[email protected] | |
with: | |
imageName: ${{ env.IMAGE_NAME }}-${{ matrix.neovim-version }} | |
cacheFrom: ${{ env.IMAGE_NAME }}-${{ matrix.neovim-version }} | |
push: never | |
build-args: | | |
NEOVIM_VERSION="${{ matrix.neovim-version }}" | |
- name: Run tests inside the docker image | |
uses: devcontainers/[email protected] | |
with: | |
cacheFrom: ${{ env.IMAGE_NAME }}-${{ matrix.neovim-version }} | |
push: never | |
runCmd: make test |