Skip to content

Add problem 1946: Largest Number After Mutating Substring #1468

Add problem 1946: Largest Number After Mutating Substring

Add problem 1946: Largest Number After Mutating Substring #1468

Workflow file for this run

name: Coverage
on: push
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup update
- run: rustup component add llvm-tools
- run: sudo apt-get install --no-install-recommends -y ninja-build
- run: vcpkg install gtest
- run: >-
cargo xtask coverage
--cmake-toolchain-file "$VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake"
--llvm-version 14
-o coverage/lcov.info
- uses: codecov/codecov-action@v3
with:
files: coverage/lcov.info
- uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}