jsonpickle: guard against invalid b85 and b64 data #60
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: Lint | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Run black check | |
uses: psf/black@stable | |
with: | |
options: "--check --diff" | |
- name: Run isort check | |
uses: isort/isort-action@master | |
with: | |
configuration: "--check-only --diff --profile black" |