Skip to content

Commit

Permalink
Disable Codecov while we figure out repo sync issues
Browse files Browse the repository at this point in the history
  • Loading branch information
scouten-adobe committed Mar 8, 2024
1 parent 1894d45 commit 4f18e2b
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,22 @@ jobs:
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2

- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov

- name: Generate code coverage
run: cargo llvm-cov --all-features --lcov --ignore-filename-regex tests --output-path lcov.info

- name: Upload code coverage results
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
- name: Run unit tests
run: cargo test --all-reatures

# Disable Codecov while we figure out repo sync issues ...
# - name: Install cargo-llvm-cov
# uses: taiki-e/install-action@cargo-llvm-cov

# - name: Generate code coverage
# run: cargo llvm-cov --all-features --lcov --ignore-filename-regex tests --output-path lcov.info

# - name: Upload code coverage results
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# fail_ci_if_error: true
# verbose: true

tests-cross:
name: Unit tests
Expand Down

0 comments on commit 4f18e2b

Please sign in to comment.