feat(crypto): utilize new encrypted db table for admin secrets [#411] #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |