workflow(macos): fix brew link [email protected]
issue
#16
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: WebP Pixbuf CI [Fedora] | |
on: | |
push: | |
branches: | |
- mainline | |
pull_request: | |
branches: | |
- mainline | |
jobs: | |
build_fedora: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:rawhide | |
steps: | |
- uses: actions/checkout@v4 | |
- run: dnf -y install ninja-build meson libwebp-devel gdk-pixbuf2-devel valgrind clang clang-analyzer clang-tools-extra | |
- 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' | |
- run: clang-format --Werror -n *.[ch] tests/*.[ch] |