From d1729838bd2802eadaff7278f97dbaf1320e9021 Mon Sep 17 00:00:00 2001 From: 1letter <1letter@gmx.de> Date: Fri, 19 Apr 2024 21:16:50 +0200 Subject: [PATCH] add codecov sample workflow but disabled --- .github/workflows/codecov.yml.disable | 53 +++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/codecov.yml.disable diff --git a/.github/workflows/codecov.yml.disable b/.github/workflows/codecov.yml.disable new file mode 100644 index 0000000..99aca9c --- /dev/null +++ b/.github/workflows/codecov.yml.disable @@ -0,0 +1,53 @@ +# Generated from: +# https://github.com/plone/meta/tree/main/config/default +# See the inline comments on how to expand/tweak this configuration file +name: Codecov +on: + push: + branches: + - master + - main + pull_request: + branches: + - master + - main + workflow_dispatch: + +jobs: + coveralls: + name: Codecov + runs-on: ${{ matrix.os }} + strategy: + matrix: + python-version: ["3.11"] + os: ["ubuntu-latest"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + - name: install OS packages + if: inputs.os-packages != '' + run: sudo apt-get install -y ${{ inputs.os-packages }} + - name: Cache packages + uses: actions/cache@v4 + with: + path: ~/.cache/pip + key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('tox.ini') }} + restore-keys: | + ${{ runner.os }}-pip-${{ matrix.python-version }}- + ${{ runner.os }}-pip- + - name: Install dependencies + run: python -m pip install tox + - name: Initialize tox + run: | + if [ `tox list --no-desc -f init|wc -l` = 1 ]; then tox -e init;else true; fi + - name: Run coverage + run: | + tox -q -e coverage >> $GITHUB_STEP_SUMMARY + - uses: codecov/codecov-action@v4 + with: + fail_ci_if_error: true + verbose: true + token: ${{ secrets.CODECOV_TOKEN }}