Bump requests from 2.31.0 to 2.32.0 in /connectors/steps/redshift #78
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pre-commit/[email protected] | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
cache: pip | |
cache-dependency-path: "**/requirements.txt" | |
- name: Install all requirements | |
run: find . -name requirements.txt | xargs -n1 pip install -r | |
- name: Install mypy | |
run: pip install mypy | |
- name: Create mypy cache directory | |
run: mkdir -p /tmp/.cache/mypy | |
- name: Run mypy | |
run: mypy --non-interactive --install-types --cache-dir=/tmp/.cache/mypy . | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
cache: pip | |
cache-dependency-path: "**/requirements.txt" | |
- run: find . -name requirements.txt | xargs -n1 pip install -r | |
- run: pip install pytest-cov | |
- run: py.test -svv --cov . --cov-report term-missing |