Skip to content

chore(deps): bump rustls-webpki from 0.103.12 to 0.103.13 #2053

chore(deps): bump rustls-webpki from 0.103.12 to 0.103.13

chore(deps): bump rustls-webpki from 0.103.12 to 0.103.13 #2053

Workflow file for this run

name: Build and test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12, 3.13]
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: Cargo Build
run: cargo build
- name: Cargo Tests
run: cargo test
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Test Python Client
run: |
export THROTTLE_LOG=debug
uv sync --dev
uv run pytest -v
dependabot:
needs: [test]
permissions:
pull-requests: write
contents: write
runs-on: ubuntu-latest
# Only run this job on the pull request event to avoid merging it twice on push and
# pull_request.
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
steps:
- name: Merge Depenabot Pull Request
run: gh pr merge --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}