Skip to content

Bump requests from 2.32.5 to 2.33.0 #149

Bump requests from 2.32.5 to 2.33.0

Bump requests from 2.32.5 to 2.33.0 #149

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install pipenv
pipenv install -d
- name: Run tests
run: |
pipenv run pip install -e .
pipenv run test
env:
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}