# Code coverage generation via cargo-llvm-cov, which is then uploaded to Codecov. # Codecov will report back via a comment if run on a PR. name: codecov on: workflow_dispatch: pull_request: push: branches: - master env: CARGO_INCREMENTAL: 0 concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository != 'ClementTsang/bottom' }} # TODO: Maybe add this for more than just Linux. jobs: pre-job: runs-on: ubuntu-latest outputs: should_skip: ${{ steps.skip_check.outputs.should_skip }} steps: - id: skip_check uses: fkirc/skip-duplicate-actions@f11521568414503656a5af807dc3018c012552c4 # v5.2.0 with: skip_after_successful_duplicate: "false" paths: '["tests/**", "src/**", ".github/workflows/coverage.yml", ".cargo/**", "Cargo.toml", "Cargo.lock", "build.rs"]' do_not_skip: '["workflow_dispatch", "push"]' coverage: needs: pre-job if: ${{ needs.pre-job.outputs.should_skip != 'true' }} runs-on: ${{ matrix.info.os }} timeout-minutes: 18 strategy: fail-fast: false matrix: info: - { os: "ubuntu-latest" } - { os: "macos-12" } - { os: "windows-2019" } steps: - name: Checkout repository uses: actions/checkout@v3 - name: Set up Rust toolchain uses: dtolnay/rust-toolchain@ba37adf8f94a7d9affce79bd3baff1b9e3189c33 # https://github.com/dtolnay/rust-toolchain/commit/ba37adf8f94a7d9affce79bd3baff1b9e3189c33 with: toolchain: stable - name: Enable Rust cache uses: Swatinem/rust-cache@359a70e43a0bb8a13953b04a90f76428b4959bb6 # 2.2.0 if: ${{ github.event_name != 'pull_request' || ! github.event.pull_request.head.repo.fork }} # If it is a PR, only if not a fork - name: Install cargo-llvm-cov run: | rustup component add llvm-tools-preview cargo install cargo-llvm-cov --version 0.5.9 --locked - name: Generate code coverage run: | cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info --locked - name: Upload to codecov.io uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # 3.1.1 with: files: lcov.info fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} flags: ${{ matrix.info.os }}