Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/credfeto/action-case-checker

Git workflow action for checking to see if there are any files or directories in the repo which differ only by case.
https://github.com/credfeto/action-case-checker

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

# File Case Sensitivity Checker

[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#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
```yaml
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/[email protected]
with:
fetch-depth: 0
# Run the case checker action
- name: Check Case Sensitivity
uses: credfeto/[email protected]
```

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

## Contributors



Bela VanderVoort
Bela VanderVoort

📖