Skip to content

feat: apply 'aad' to crypto logic for db models [#411] #20

feat: apply 'aad' to crypto logic for db models [#411]

feat: apply 'aad' to crypto logic for db models [#411] #20

Workflow file for this run

---
name: Run Tests
on:
push:
# These following lines will be uncommented when there are
# no more changes expected / needed on this PR branch.
#
# branches:
# - main
# pull_request:
# branches:
# - main
jobs:
run-lint-and-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- uses: actions/checkout@v4
- name: Install Poetry
run: pip install poetry
- name: Cache Python dependencies
uses: actions/cache@v3
with:
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
${{ runner.os }}-poetry-
path: |
~/.cache/pypoetry
- name: Install Python dependencies
run: poetry install
- name: Lint
run: poetry run make lint
- name: Test
run: poetry run make test