Bump urllib3 from 2.0.3 to 2.0.7 #252
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: Continuous Integration | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- main | |
- "releases/*" | |
jobs: | |
# Build and test the project | |
build-lint-test: | |
strategy: | |
fail-fast: true | |
matrix: | |
python: ["3.7", "3.11"] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Print build information | |
run: "echo head_ref: ${{ github.head_ref }}, ref: ${{ github.ref }}, os: ${{ matrix.os }}, python: ${{ matrix.python }}" | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python }} | |
# Using fixed Poetry version until | |
# https://github.com/python-poetry/poetry/pull/7694 is fixed | |
- run: python -m pip install --upgrade wheel "poetry==1.4.0" poethepoet | |
- run: poetry install --with pydantic --with dsl | |
- run: poe lint | |
- run: poe test -s -o log_cli_level=DEBUG | |
- run: poe test -s -o log_cli_level=DEBUG --workflow-environment time-skipping | |
# On non-3.7, run gevent test | |
- name: Gevent test | |
if: ${{ matrix.python != '3.7' }} | |
run: | | |
poetry install --with gevent | |
poetry run python gevent_async/test/run_combined.py | |