Skip to content

Bump pytest from 8.1.1 to 8.2.1 #152

Bump pytest from 8.1.1 to 8.2.1

Bump pytest from 8.1.1 to 8.2.1 #152

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
concurrency: "prod"
steps:
- uses: 'actions/[email protected]'
- id: 'auth'
name: 'Authenticate to Google Cloud'
uses: 'google-github-actions/[email protected]'
with:
workload_identity_provider: ${{ vars.GCP_WORKLOAD_IDENTITY_PROVIDER }}
service_account: ${{ vars.GCP_SERVICE_ACCOUNT }}
- uses: actions/[email protected]
with:
python-version: 3.11
- name: Install poetry
uses: abatilo/[email protected]
- name: Install dependencies
run: poetry install
- name: Test
run: poetry run pytest -v
- name: Generate Requirements
run: poetry export --output=requirements.txt
- id: 'deploy'
uses: 'google-github-actions/[email protected]'
with:
name: ${{ vars.GCP_CLOUD_FUNCTION_NAME }}
runtime: 'python311'
entry_point: "update"
# TODO put these all in github or all in gcp
env_vars: DEVICE_ID=${{ vars.DEVICE_ID}}
secret_environment_variables: ASTRAL_LOCATION=projects/${{ steps.auth.outputs.project_id}}/secrets/ASTRAL_LOCATION/versions/latest,SUREPY_AUTH_TOKEN=projects/${{ steps.auth.outputs.project_id}}/secrets/SUREPY_AUTH_TOKEN/versions/latest
- name: Trigger deployed function
run:
curl ${{ steps.deploy.outputs.url }} --fail-with-body