Skip to content

jsonpickle: guard against invalid b85 and b64 data #60

jsonpickle: guard against invalid b85 and b64 data

jsonpickle: guard against invalid b85 and b64 data #60

Workflow file for this run

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"