Skip to content

chore(deps): bump cryptography from 46.0.3 to 46.0.5 in /lib/stac-auth-proxy/runtime #222

chore(deps): bump cryptography from 46.0.3 to 46.0.5 in /lib/stac-auth-proxy/runtime

chore(deps): bump cryptography from 46.0.3 to 46.0.5 in /lib/stac-auth-proxy/runtime #222

Workflow file for this run

name: Unit tests
on:
workflow_dispatch:
push:
branches:
- main
tags:
- 'v*'
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.7.*"
enable-cache: true
- name: Install PostgreSQL and PostGIS
run: |
sudo apt-get update
sudo apt-get install -y postgresql postgresql-contrib postgresql-16-postgis-3
sudo service postgresql start
pg_isready
- name: Install dependencies
run: |
uv sync
- name: Run tests
run: uv run pytest