forked from extern/httpie-cli
c995fd9b24
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
511 B
YAML
25 lines
511 B
YAML
name: Coverage
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/coverage.yml
|
|
- httpie/**/*.py
|
|
- setup.*
|
|
- tests/**/*.py
|
|
|
|
jobs:
|
|
coverage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
- run: make install
|
|
- run: make test-cover
|
|
- run: make codecov-upload
|
|
env:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_REPO_TOKEN }}
|
|
- run: make test-dist
|