Skip to content

perf: no need to decode bytes to str for json.loads #708

perf: no need to decode bytes to str for json.loads

perf: no need to decode bytes to str for json.loads #708

Workflow file for this run

name: Downstream
on: [push, pull_request]
permissions: "read-all"
jobs:
downstream:
strategy:
fail-fast: false
matrix:
downstream: [botocore, requests]
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- name: "Checkout repository"
uses: actions/checkout@cd7d8d697e10461458bc61a30d094dc601a8b017 # v4.0.0
- name: "Setup Python"
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: "3.x"
- name: "Install dependencies"
run: python -m pip install --upgrade nox
- name: "Run downstream tests"
run: nox -s downstream_${{ matrix.downstream }}