Skip to content

fix: don't copy or modify globals for builtin handler #37

fix: don't copy or modify globals for builtin handler

fix: don't copy or modify globals for builtin handler #37

Workflow file for this run

name: Style Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black isort
- name: Check style
run: |
black --check intercepts tests
isort --check --profile=black intercepts tests