Extend tlsfuzzer coverage #1083
Workflow file for this run
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: Scan Build | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
name: CI with softoken | |
runs-on: ubuntu-22.04 | |
container: fedora:latest | |
steps: | |
- name: Install Dependencies | |
run: | | |
dnf -y install $COMPILER meson pkgconf-pkg-config \ | |
git openssl-devel clang-analyzer | |
- uses: actions/checkout@v4 | |
name: Checkout Repository | |
- name: Setup | |
run: | | |
meson setup builddir | |
- name: Scan Build | |
run: | | |
SCANBUILD=$PWD/.github/scan-build.sh ninja -C builddir scan-build | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: Scan Build logs | |
path: | | |
builddir/meson-logs/scanbuild/ |