feat: add check-for-ignored script

Checks for ignored files that have been tracked by git.
This commit is contained in:
Paul Campbell 2025-01-13 09:04:18 +00:00
parent 5d372a60de
commit b853a6acec
3 changed files with 47 additions and 0 deletions

View file

@ -42,3 +42,18 @@ The available toolchain in the image are:
- cargo-chef
- cargo-hack
- release-plz
### Scripts
- `check-for-ignored`
Checks for files that are being tracked by Git but should be ignored according
to the `.gitignore` file.
#### Usage
```yaml
steps:
- name: Check for Ignored Files
run: check-for-ignored
```