Skip to content

chore: bump version to 1.3.30 #319

chore: bump version to 1.3.30

chore: bump version to 1.3.30 #319

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -e ".[test]"
- name: Generate test signing key
run: python3 -m trust_layer.crypto
- name: Run tests
run: pytest tests/ -v
- name: Audit dependencies
run: |
pip install pip-audit
pip-audit
continue-on-error: true