Skip to content
check-circle

GitHub Action

FawltyDeps

v0.2.0 Latest version

FawltyDeps

check-circle

FawltyDeps

Check a Python project for _undeclared_ and _unused_ 3rd party dependencies

Installation

Copy and paste the following snippet into your .yml file.

              

- name: FawltyDeps

uses: tweag/[email protected]

Learn more about this action in tweag/FawltyDeps-action

Choose a version

Build Code of conduct

FawltyDeps GitHub Action

This FawltyDeps GitHub Action lints packages for undeclared or unused 3rd-party dependencies.

See more about FawltyDeps:

FawltyDeps is a dependency checker for Python that finds undeclared and/or unused 3rd-party dependencies in your Python project. The name is inspired by the Monty Python-adjacent Fawlty Towers sitcom.

Table of contents

Key Concepts

Usage

Inputs

Outputs

Example usage

Documentation

Development

Key Concepts

This allows you to run FawltyDeps as part of an independent GitHub action.

Usage

This action will run fawltydeps in the project directory for a Python codebase. See the FawltyDeps - Configuration documentation for more on how to configure this tool.

Inputs

options

Optional command line arguments to fawltydeps.

Example usage

You need to use a checkout action before the FawltyDeps action.

For simple usage, save this in your project as .github/workflows/lint.yml:

---
name: Lint

on: pull_request

jobs:
  lint:
    name: FawltyDeps
    runs-on: ubuntu-latest
    steps:
      - name: checkout
        uses: actions/checkout@v4
      - name: lint - FawltyDeps
        uses: tweag/[email protected]

Here is a more advanced example with customized command line options:

      - name: lint - FawltyDeps
        uses: tweag/[email protected]
        with:
          options: --detailed --exclude vendor/

Invoking FawltyDeps using options: --detailed yields good results when you just want to see what problems may be present. That is now the default, if you do not specify any options. You can also configure FawltyDeps through the [tool.fawltydeps] section in your project's pyproject.toml file, see [Configuration](https://github.com/tweag/FawltyDeps#configuration] in the main FawltyDeps documentation for more details.

Documentation

This action was inspired by and partially derived from the MIT-licensed black and isort-action GitHub actions.

Development

For details on setting up your development environment, please refer to the contributing guidelines of how to set up your development environment in our CONTRIBUTING.md file.