Skip to content

Commit

Permalink
Bump codecov-action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettgoble committed Feb 1, 2024
1 parent 5b63d1c commit 864adff
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ jobs:
name: Test & Build
strategy:
matrix:
python-version: ['2.7', '3.7', '3.8', '3.10']
python-version: ['3.7', '3.8', '3.10']
image-variant: ['']
include:
- python-version: '2.7'
image-variant: '-buster'
runs-on: [ubuntu-latest]
container:
image: "python:${{ matrix.python-version }}-buster"
image: "python:${{ matrix.python-version }}${{ matrix.image-variant }}"
env:
PYTHON: ${{ matrix.python-version }}
steps:
Expand Down Expand Up @@ -44,7 +48,7 @@ jobs:
run: python -m build

- name: Upload coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
if: matrix.python-version == '3.10'
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down

1 comment on commit 864adff

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Python Benchmarks'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.10.

Benchmark suite Current: 864adff Previous: 5b63d1c Ratio
tests/bench.py::test_parse_xml_stream 13030.959767340377 iter/sec (stddev: 0.00008847280956657875) 15769.089493607331 iter/sec (stddev: 0.000003844633524595741) 1.21
tests/bench.py::test_format_notation_deep 326.5583204383333 iter/sec (stddev: 0.0007614414628980858) 369.97786979043366 iter/sec (stddev: 0.00009672905832438023) 1.13

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.