Skip to content

Fix thread safety bug in lazy load pattern #63

Fix thread safety bug in lazy load pattern

Fix thread safety bug in lazy load pattern #63

Workflow file for this run

name: Build
on: ["push", "pull_request"]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
["3.8.*", "3.9.*", "3.10.*", "3.11.*", "3.12.*", "3.13.*"]
steps:
- uses: actions/checkout@master
- name: set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools
pip install -r requirements.txt
pip install .
pip install tox
- name: Run mypy
run: |
pip install -U mypy
mypy -p zxcvbn --ignore-missing-imports
- name: Run tests
run: |
tox