No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2025-03-23 06:11:32 -06:00
.github Deleted .github/workflows/rebase.yml 2025-03-23 06:11:32 -06:00
test_package Update main.py 2022-01-13 13:50:47 -05:00
.gitignore Update .gitignore 2021-04-06 12:15:31 -04:00
.whitesource Added .whitesource 2021-07-02 12:52:34 -04:00
action.yml Update action.yml 2021-04-23 07:07:17 -04:00
CODE_OF_CONDUCT.md Added CODE_OF_CONDUCT.md 2021-07-02 16:43:52 -04:00
CONTRIBUTING.md Initial commit. 2021-04-06 10:42:42 -04:00
HISTORY.md Upgraded from v1.0.1 -> v1.0.1 2023-10-04 20:44:59 +00:00
LICENSE Initial commit. 2021-04-06 10:42:42 -04:00
README.md Update README.md 2023-10-04 14:46:28 -06:00

Codacy Badge CI Update release version. Public workflows that use this action.

check-manifest

Run check-manifest to detect issues with distributed python packages.

...
    steps:
      - uses: actions/checkout@v2
      - name: check-manifest
        uses: tj-actions/check-manifest@v1

Inputs

INPUT TYPE REQUIRED DEFAULT DESCRIPTION
args string false "-v" Arguments passed to check-manifest
package-dir string false Directory of the package
version string true "0.46" Pinned version of check-manifest

Example

...
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Python 3
        uses: actions/setup-python@v2
        with:
          python-version: '3.x'
      - uses: actions/cache@v2
        id: pip-cache
        with:
          path: ~/.cache/pip
          key: ${{ runner.os }}-pip-
          restore-keys: |
            ${{ runner.os }}-pip-
      - name: Run check-manifest
        uses: tj-actions/check-manifest@v1
        with:
          package-dir: 'test_package'
          args: '-u'
      - name: Create Pull Request
        if: failure()
        uses: peter-evans/create-pull-request@v3
        with:
          base: "main"
          title: "Updated MANIFEST.in"
          branch: "chore/update-manifest-in"
          commit-message: "Updated MANIFEST.in"
          body: "Updated MANIFEST.in"
          token: ${{ secrets.github_token }}

If you feel generous and want to show some extra appreciation:

Buy me a coffee

Features

Credits

This package was created with Cookiecutter.

Report Bugs

Report bugs at https://github.com/tj-actions/check-manifest/issues.

If you are reporting a bug, please include:

  • Your operating system name and version.
  • Any details about your workflow that might be helpful in troubleshooting.
  • Detailed steps to reproduce the bug.