Update settings for Strato #75
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: Validate client config | |
on: [pull_request] | |
jobs: | |
validate_config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: BOM check | |
uses: arma-actions/bom-check@v1.1 | |
with: | |
path: ispdb | |
- name: Validate file extensions | |
run: | | |
set -o pipefail | |
ls -1 ispdb/ | grep -v '\.xml$' | awk '{print "::error file=ispdb/"$0"::File name \"ispdb/"$0"\" does not end in .xml – Please rename!"}' && exit 1 || true |