Expose query params for get_credentials_by_proof_id
#2145
Workflow file for this run
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: Python code style check | |
on: | |
pull_request: | |
branches: | |
- main | |
- development | |
jobs: | |
style: | |
name: style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12.4 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12.4 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install \ | |
isort~=5.13.2 \ | |
black~=24.8.0 | |
- name: Check import style with isort | |
run: isort . --check --profile black --diff | |
- name: Check code style with Black | |
run: black . --check --diff |