Skip to content

Git workflow action for checking to see if there are any files or directories in the repo which differ only by case.

License

Notifications You must be signed in to change notification settings

credfeto/action-case-checker

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

File Case Sensitivity Checker

All Contributors

This action finds any folders files that differ only by case that can cause problems on Windows repositories.

How to use it?

This is a GitHub action, so it has to be added to a GitHub workflow.
A simple example of running this action on all pushes to the repository would be to add a main.yml file under .github/workflows with the following content

on: [push]

jobs:
  case-sensitivity_job:
    runs-on: ubuntu-latest
    name: check-file-case-sensitivity
    steps:
      # Checkout the source code so we have some files to look at.
      - uses: actions/checkout@v2.4.0
        with:
          fetch-depth: 0
      # Run the case checker action
      - name: Check Case Sensitivity
        uses: credfeto/action-case-checker@v1.3.0

On each push, it will now run the case sensitivity checker

Contributors

Bela VanderVoort
Bela VanderVoort

📖

About

Git workflow action for checking to see if there are any files or directories in the repo which differ only by case.

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages