Skip to content

Bump codecov/codecov-action from 5.5.0 to 5.5.1 #1004

Bump codecov/codecov-action from 5.5.0 to 5.5.1

Bump codecov/codecov-action from 5.5.0 to 5.5.1 #1004

Workflow file for this run

name: Test
on:
push:
branches: [main]
# paths-ignore:
# - ".github/**"
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.11", "3.12", "3.13"]
steps:
- name: Harden Runner
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
with:
egress-policy: audit
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run tests with tox
run: tox -e py${{ matrix.python_version }}
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: Ludy87/pyecotrend-ista
fail_ci_if_error: false
verbose: true