diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 8455d6e..7f9ff48 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -5,13 +5,11 @@ on: branches: - master paths: - - "pyarch" - "*.py" pull_request: branches: - master paths: - - "pyarch" - "*.py" workflow_dispatch: @@ -33,9 +31,9 @@ jobs: - name: Lint run: | - isort pyarch - mypy pyarch - black -l 120 pyarch + isort pyarch.py + mypy pyarch.py + black -l 120 pyarch.py - name: Unittest with pytest run: pytest -vv . diff --git a/pyarch b/pyarch.py similarity index 100% rename from pyarch rename to pyarch.py