Try ldapsearch on all the valid FQDNs instead of just one. #89
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: cppcheck-action | |
on: | |
push: | |
branches: | |
- mainline | |
pull_request: | |
branches: [ mainline ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: cppcheck | |
run: | | |
sudo apt-get install -y cppcheck | |
cppcheck --enable=all --force --suppressions-list=suppressions.txt . | |
echo "cppcheck completed" |