Fix discovering executable files on macOS #224
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'additional_files' | |
on: | |
push: | |
branches: | |
- "master" | |
pull_request: | |
branches: | |
- "master" | |
permissions: {} | |
jobs: | |
additional_files: | |
name: additional_files | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Run ShellCheck | |
uses: ./ | |
id: check | |
with: | |
additional_files: run finish discovery | |
ignore_paths: ignore | |
scandir: testfiles | |
- name: Verify check | |
run: | | |
expect="testfiles/scandir/run" | |
if [[ ! "${{ steps.check.outputs.files }}" =~ testfiles/scandir/run ]];then | |
echo "::error:: Expected file testfiles/scandir/run not found in ${{ steps.check.outputs.files }}" | |
exit 1 | |
elif [[ ! "${{ steps.check.outputs.files }}" =~ testfiles/scandir/finish ]];then | |
echo "::error:: Expected file testfiles/scandir/finish not found in ${{ steps.check.outputs.files }}" | |
exit 1 | |
elif [[ ! "${{ steps.check.outputs.files }}" =~ testfiles/scandir/discovery ]];then | |
echo "::error:: Expected file testfiles/scandir/discovery not found in ${{ steps.check.outputs.files }}" | |
exit 1 | |
fi |