From fcf30d9c900d246ef4bfb63cbb6cd3946a6755c0 Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Sun, 11 Aug 2024 16:17:22 -0700 Subject: [PATCH] Skip codecov on macos --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4ffa3b..e794b63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{matrix.python-version}} - run: | @@ -22,6 +22,7 @@ jobs: run: make lint - run: make test - uses: codecov/codecov-action@v3 + if: ${{matrix.python-version == '3.12' && matrix.os == 'ubuntu-24.04'}} black: runs-on: ubuntu-22.04 steps: