tests: add test to check pixbuf loader signals #107
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: WebP Pixbuf CI [Ubuntu] | |
on: | |
push: | |
branches: | |
- mainline | |
pull_request: | |
branches: | |
- mainline | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt update | |
- run: sudo apt install ninja-build meson libwebp-dev libgdk-pixbuf2.0-dev valgrind | |
- run: mkdir build | |
- run: meson build | |
- run: ninja -C build | |
- run: ninja -C build scan-build | |
- run: meson test -C build --print-errorlogs | |
- run: meson test -C build --wrapper 'valgrind --leak-check=full --error-exitcode=1' |