bump(csharpier): update to v0.26.0 #2508
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: Package lint | |
on: | |
- pull_request | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
mapfile -t EXTRA_FILES < <(find packages -type f -not -name package.yaml) | |
if [[ ${#EXTRA_FILES[@]} -gt 0 ]]; then | |
for file in "${EXTRA_FILES[@]}"; do | |
echo "::error file=${file},line=1::Only package.yaml files are allowed inside packages/." | |
done | |
exit 1 | |
fi |