Skip to content

⬆️ Bump cryptography from 44.0.3 to 45.0.2 #798

⬆️ Bump cryptography from 44.0.3 to 45.0.2

⬆️ Bump cryptography from 44.0.3 to 45.0.2 #798

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/[email protected]
with:
python-version: 3.9
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: 3.9
- name: Install dependencies
run: pdm sync
- name: Run style checks
run: |
make check-style
- name: Run security checks
run: |
make check-security
- name: Run unit tests
run: |
make unit-test
# Upload coverage to codecov: https://codecov.io/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml