Skip to content

Change default .pth path file name to <directory>.pth; fixes #1 #6

Change default .pth path file name to <directory>.pth; fixes #1

Change default .pth path file name to <directory>.pth; fixes #1 #6

Workflow file for this run

name: flake8
on:
- push
- pull_request
jobs:
lint:
if: always()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Run linting with tox
env:
TOXENV: "lint"
run: tox