Skip to content

build(deps): bump coverage from 7.13.4 to 7.13.5 in /.github/workflows/requirements #469

build(deps): bump coverage from 7.13.4 to 7.13.5 in /.github/workflows/requirements

build(deps): bump coverage from 7.13.4 to 7.13.5 in /.github/workflows/requirements #469

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{github.ref}}-${{github.event.pull_request.number || github.run_number}}
cancel-in-progress: true
jobs:
changes:
runs-on: ubuntu-latest
outputs:
style: ${{ steps.filter.outputs.style }}
security: ${{ steps.filter.outputs.security }}
unit-tests: ${{ steps.filter.outputs.unit-tests }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # @v2
if: ${{ github.event_name == 'push' }}
with:
fetch-depth: 0
# For pull requests it's not necessary to checkout the code
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d
id: filter
with:
filters: |
style:
- '.github/**/*'
- 'src/**/*'
- 'pyproject.toml'
security:
- '.github/**/*'
- 'src/**/*'
- 'pyproject.toml'
- '.bandit'
unit-tests:
- '.github/**/*'
- 'src/**/*'
- 'tests/**/*'
- 'pyproject.toml'
style:
if: ${{ needs.changes.outputs.style == 'true' }}
needs: changes
uses: ./.github/workflows/style.yml
security:
if: ${{ needs.changes.outputs.security == 'true' }}
needs: [changes, style]
uses: ./.github/workflows/security.yml
permissions:
contents: read
security-events: write
unit-tests:
if: ${{ needs.changes.outputs.unit-tests == 'true' }}
needs: [changes, style]
uses: ./.github/workflows/unit-tests.yml
coverage:
if: ${{ needs.changes.outputs.unit-tests == 'true' }}
needs: [changes, style, unit-tests]
uses: ./.github/workflows/coverage.yml
all:
needs:
- changes
- style
- security
- unit-tests
- coverage
if: always()
runs-on: ubuntu-latest
steps:
- name: Status summary
run: |
if ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}; then
echo "One or more required jobs failed or were cancelled"
exit 1
else
echo "All jobs completed successfully"
fi