8000 chore(deps): update dependency types-requests to v2.32.0.20250515 · BGmi/BGmi@10be4cb · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

chore(deps): update dependency types-requests to v2.32.4.20250611 (master) #2989

chore(deps): update dependency types-requests to v2.32.4.20250611 (master)

chore(deps): update dependency types-requests to v2.32.4.20250611 (master) #2989

Workflow file for this run

name: test
on:
schedule:
- cron: "1 1 1 * *" # monthly
workflow_dispatch:
push:
branches-ignore:
- renovate/**
- deepsource-*
pull_request: {}
merge_group:
defaults:
run:
shell: bash
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
test:
runs-on: ${{ format('{0}-latest', matrix.os) }}
strategy:
matrix:
python: ["3.9", "3.13"]
os: [macos, windows, ubuntu]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- uses: astral-sh/setup-uv@v6
with:
activate-environment: true
- run: uv sync --locked
- name: test
run: |
set -ex
263D coverage run -a -m bgmi install
bgmi --help
coverage run -a -m pytest tests --cache-requests --ignore=tests/downloader
- run: coverage xml --omit templates/download_xml.generated.py
- uses: codecov/codecov-action@v5
with:
flags: app,front
token: ${{ secrets.CODECOV_TOKEN }} # required
test-all-pass:
needs:
- test
runs-on: ubuntu-latest
steps:
- run: echo 'OK'
0