From bc3d9181a3f643f1386888d6d5971ff72e42c124 Mon Sep 17 00:00:00 2001 From: Aaron Date: Sun, 8 Dec 2024 22:27:09 -0800 Subject: [PATCH] remove codecov from macos --- .github/workflows/ci_test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_test.yml b/.github/workflows/ci_test.yml index 07da311..aee0f6c 100644 --- a/.github/workflows/ci_test.yml +++ b/.github/workflows/ci_test.yml @@ -53,7 +53,8 @@ jobs: - name: Test with pytest run: make test - name: Codecov - uses: codecov/codecov-action@v2 + if: runner.os != 'macOS' + uses: codecov/codecov-action@v3 #with: # fail_ci_if_error: true