Skip to content

implement Lockable.unlock #116

implement Lockable.unlock

implement Lockable.unlock #116

Workflow file for this run

name: Build
on:
pull_request:
push:
workflow_dispatch:
jobs:
job:
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- 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
python -m pip install --upgrade setuptools wheel
- name: Build
run: python setup.py sdist bdist_wheel