Skip to content

build(deps-dev): bump types-requests from 2.33.0.20260518 to 2.33.0.20260712 #1367

build(deps-dev): bump types-requests from 2.33.0.20260518 to 2.33.0.20260712

build(deps-dev): bump types-requests from 2.33.0.20260518 to 2.33.0.20260712 #1367

Workflow file for this run

name: pytests
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.13", "3.14"]
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # pin@v7.0.0
with:
fetch-depth: 2
- name: Setup Gardenlinux
uses: ./.github/actions/setup
with:
python_version: ${{ matrix.python_version }}
- name: Install dependencies
run: poetry install --with dev
- name: Prepare environment
run: make install-test
- name: Run tests
run: |
export GLOCI_REGISTRY_TOKEN="invalid"
make test-coverage-ci
- name: Check for report
run: test -f coverage.xml
- name: Upload results to Codecov
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # pin@v7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}