From ef6304a8c13c6b4619f17bcbefa450e7038a314f Mon Sep 17 00:00:00 2001 From: Kimoon Han Date: Thu, 12 Sep 2024 22:34:37 +0900 Subject: [PATCH] ci(github): update workflow --- .github/workflows/ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a45343e..4d554d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,7 +67,7 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} mypy: - name: Mypy + name: Static type checking runs-on: ubuntu-latest env: DISPLAY: ':99.0' @@ -84,18 +84,14 @@ jobs: - name: Run mypy run: mypy --install-types --non-interactive --html-report mypy-report . - continue-on-error: true - name: Upload mypy results uses: actions/upload-artifact@v4 + if: always() with: name: mypy-report path: mypy-report/ - - - if: failure() - run: | - echo "Mypy failed" - exit 1 + if-no-files-found: error release: name: Release