From aa890bdc0cccecc2a33f9a73c05ba5db64667e6c Mon Sep 17 00:00:00 2001 From: Geod24 Date: Thu, 4 Mar 2021 16:57:44 +0900 Subject: [PATCH] Use fetch-depth:2 to let codecov detect the sha We see a warning in PR workflows otherwise. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9cc9258a..a85c456e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,9 @@ jobs: steps: - uses: actions/checkout@v2 + with: + # Requiried for codecov action + fetch-depth: 2 - uses: dlang-community/setup-dlang@v1 - name: 'Build & Test'