Add Scrapy ApifyHttpProxyMiddleware
for managing proxies
#244
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: Code quality checks | |
on: | |
pull_request: | |
jobs: | |
check_version_availability: | |
name: Check version availability | |
uses: ./.github/workflows/check_version_availability.yaml | |
lint_and_type_checks: | |
name: Run lint and type checks | |
uses: ./.github/workflows/lint_and_type_checks.yaml | |
unit_tests: | |
name: Run unit tests | |
needs: [lint_and_type_checks] | |
uses: ./.github/workflows/unit_tests.yaml | |
integration_tests: | |
name: Run integration tests | |
needs: [lint_and_type_checks, unit_tests] | |
uses: ./.github/workflows/integration_tests.yaml | |
secrets: inherit |