Skip to content

fix unit tests for PT 3.11 #282

fix unit tests for PT 3.11

fix unit tests for PT 3.11 #282

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
architecture: x64
cache: 'pip' # caching pip dependencies
- name: Install Dependencies
run: |
set -eux
pip install usort==1.0.2
pip install black
pip install flake8==3.9.0
- name: Run Lint
run: |
git config --global url."https://${{ secrets.GITHUB_TOKEN }}:[email protected]/".insteadOf "https://github.com/"
scripts/lint.sh