Pass server->client command over a separate socket pair (#762) #114
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 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
coverity: | |
timeout-minutes: 5 | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: run-scan | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install libjson-c-dev libcmocka-dev clang valgrind \ | |
python3-pytest debianutils meson ninja-build | |
./.github/workflows/coverity.sh | |
env: | |
COVERITY_TOKEN: ${{ secrets.COVERITY_TOKEN }} | |
COVERITY_EMAIL: ${{ secrets.COVERITY_EMAIL }} |