Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:
SQLX_OFFLINE: true
run: cd nidx && cargo llvm-cov --codecov --output-path codecov.json nextest --workspace --all-features
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
file: ./nidx/codecov.json
flags: nidx
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
run: source .venv/bin/activate && make -C nucliadb test-cov-search

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
file: ./nucliadb/coverage.xml
flags: nucliadb-search
Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
make -C nucliadb test-cov-nucliadb pytest_extra_flags="--shard-id=${{ matrix.shard }} --num-shards=3 --lf"

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
file: ./nucliadb/coverage.xml
flags: nucliadb
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:
run: source .venv/bin/activate && make -C nucliadb test-cov-${{ matrix.component }}

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
file: ./nucliadb/coverage.xml
flags: nucliadb-${{ matrix.component }}
Expand Down Expand Up @@ -435,7 +435,7 @@ jobs:
run: source .venv/bin/activate && make -C ${{ matrix.package }} test-cov

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
file: ./${{ matrix.package }}/coverage.xml
flags: ${{ matrix.package }}
Expand Down
Loading