Add support for Ed25519 and Ed448 curves (PKCS#11 v3.2) (#623) #317
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
| name: Coverity Scan | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| coverity: | |
| runs-on: ubuntu-latest | |
| env: | |
| token: ${{secrets.COVERITY_SCAN_TOKEN}} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| if: env.token | |
| - name: Get ready for scanning | |
| if: env.token | |
| run: | | |
| sudo apt-get install -y libssl-dev opensc softhsm2 | |
| autoreconf --verbose --install --force | |
| ./configure | |
| - uses: vapier/coverity-scan-action@v1 | |
| if: env.token | |
| with: | |
| email: 'viktor.tarasov@gmail.com' | |
| token: ${{secrets.COVERITY_SCAN_TOKEN}} | |
| command: make |