Skip to content

Bump google-auth from 2.29.0 to 2.36.0 #446

Bump google-auth from 2.29.0 to 2.36.0

Bump google-auth from 2.29.0 to 2.36.0 #446

Workflow file for this run

---
# This workflow will install Python dependencies and run tests so that
# unit tests can be run against pull requests.
name: Unit-Tests
on:
pull_request:
paths-ignore:
- '**.md' # All markdown files in the repository
workflow_call:
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install pytest
- name: Test with Pytest unit tests
run: |
export DEBUG=True
python -m pytest