Use OpenSSL with -sigalgs option to obtain server's certificate #60
Workflow file for this run
This file contains hidden or 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
| # Runs shellcheck on code -- in error mode only. | |
| # "paths-ignore" should be in line with unit_test.*yml files | |
| --- | |
| name: Shellcheck | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 't/**' | |
| - 'utils/**' | |
| - 'doc/**' | |
| - 'bin/**' | |
| - '**.md' | |
| - '**.1' | |
| - '**.html' | |
| - '**.pem' | |
| - '**.pdf' | |
| - '**.yml' | |
| - 'LICENSE' | |
| - 'Dockerfile' | |
| - 'Dockerfile.alpine' | |
| permissions: | |
| contents: read | |
| jobs: | |
| shellcheck: | |
| name: Shellcheck | |
| runs-on: ubuntu-24.04 | |
| env: | |
| LANG: C.UTF-8 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install shellcheck | |
| run: sudo apt update && sudo apt install -y shellcheck && shellcheck --version | |
| - name: Check shell scripts | |
| run: shellcheck -x -P "SCRIPTDIR"/utils --severity=error testssl.sh |