Skip to content

Try to set the working dir #10

Try to set the working dir

Try to set the working dir #10

Workflow file for this run

name: Filename Check
on: [push]
jobs:
check-filenames:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Check for capital letters in filenames in 'doc/manual'
run: |
files_with_caps=$(find doc/manual -type f | grep '[A-Z]')
if [ ! -z "$files_with_caps" ]; then
echo "Files with capital letters:"
echo "$files_with_caps"
fi