Skip to content

- add Valgrind target to Makefile and to Github Build action #641

- add Valgrind target to Makefile and to Github Build action

- add Valgrind target to Makefile and to Github Build action #641

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Dependencies
run: |

Check failure on line 11 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
sudo apt-get update -y
sudo apt-get install -y apache2-dev libcjose-dev libssl-dev check pkg-config
sudo apt-get install -y libjansson-dev libcurl4-openssl-dev libhiredis-dev libpcre2-dev libjq-dev check
sudo apt-get install -y valgrind
- name: Configure
run: |
./autogen.sh
./configure --with-jq
- name: Make
run: make
- name: Test
run: make check || (cat test-suite.log && exit -1)
- name: Valgrind
run: make valgrind
- name: Distcheck
run: make distcheck DESTDIR=/tmp/mod_auth_openidc