vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit 778d21bac348477097fd73c3b04a47552da9a5c9
parent 5e5a6710b43079e6c041f0aa25c8796d13e705e0
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Thu, 20 Feb 2020 14:23:34 +0100

ci: fix test coverage upload

Diffstat:
M.github/workflows/macos.yml | 2++
M.github/workflows/ubuntu.yml | 2++
M.github/workflows/windows.yml | 2++
3 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml @@ -46,5 +46,7 @@ jobs: make test - name: Upload Test Coverage + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} run: | bash <(curl -s https://codecov.io/bash) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml @@ -52,5 +52,7 @@ jobs: make test - name: Upload Test Coverage + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} run: | bash <(curl -s https://codecov.io/bash) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml @@ -49,4 +49,6 @@ jobs: - name: Upload Test Coverage shell: bash + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} run: bash <(curl -s https://codecov.io/bash)