Introduce SC_CARDCTL_GET_MODEL #1
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: Coverity CI | |
# We only want to test master or explicitly via coverity branch | |
on: | |
push: | |
branches: [master, coverity] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
HAS_COVERITY_SCAN_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN != '' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: .github/setup-linux.sh force-install | |
- run: ./bootstrap | |
- run: ./configure --disable-dependency-tracking --enable-piv-sm | |
- uses: vapier/coverity-scan-action@v0 | |
if: ${{ env.HAS_COVERITY_SCAN_TOKEN == 'true' }} | |
with: | |
project: OpenSC%2FOpenSC | |
token: ${{ secrets.COVERITY_SCAN_TOKEN }} | |
email: '[email protected]' | |
command: 'make' |