fix(ci): Add missing timeouts to CI and CD tests #70
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage | |
on: | |
pull_request: | |
paths-ignore: | |
- '**/*.rs' | |
- '**/*.txt' | |
- '**/*.snap' | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
# configuration files | |
- '.cargo/config.toml' | |
- '**/clippy.toml' | |
- 'codecov.yml' | |
- '.github/workflows/ci-coverage.yml' | |
jobs: | |
coverage: | |
name: Coverage on stable | |
# The large timeout is to accommodate: | |
# - nightly builds (75 minutes, typically 30-50 minutes) | |
# - parameter downloads (40 minutes, but only when the cache expires) | |
timeout-minutes: 115 | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' |