diff options
| author | James McCoy <jamessan@jamessan.com> | 2022-03-10 18:42:02 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-10 18:42:02 -0500 |
| commit | 8a5f0559ccc92fffc7857d4aee6036f61ceaacf5 (patch) | |
| tree | ed790a073703f0cbb2212ae0e1018d85e0ac3b46 /.github | |
| parent | 6170574d2faae4e30f49098e4947075bb0bdd3b5 (diff) | |
| parent | 815ba835a3486e103b0718e722c5cb5bf633a864 (diff) | |
| download | rneovim-8a5f0559ccc92fffc7857d4aee6036f61ceaacf5.tar.gz rneovim-8a5f0559ccc92fffc7857d4aee6036f61ceaacf5.tar.bz2 rneovim-8a5f0559ccc92fffc7857d4aee6036f61ceaacf5.zip | |
Merge pull request #17604 from dundargoc/ci/better-error-output
Better CI error output
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41a22af538..ea3185d2a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,11 +80,11 @@ jobs: run: ./ci/before_script.sh - name: Build nvim - run: ./ci/run_tests.sh build + run: ./ci/run_tests.sh build_nvim - if: "!cancelled()" - name: clint - run: ./ci/run_lint.sh clint + name: clint-full + run: ./ci/run_lint.sh clint-full - if: "!cancelled()" name: lualint @@ -99,8 +99,8 @@ jobs: run: ./ci/run_lint.sh shlint - if: "!cancelled()" - name: single-includes - run: ./ci/run_lint.sh single-includes + name: check-single-includes + run: ./ci/run_lint.sh check-single-includes - name: Cache dependencies run: ./ci/before_cache.sh @@ -201,7 +201,7 @@ jobs: run: ./ci/before_script.sh - name: Build - run: ./ci/run_tests.sh build + run: ./ci/run_tests.sh build_nvim - if: matrix.flavor != 'tsan' && matrix.flavor != 'functionaltest-lua' && !cancelled() name: Unittests |