Skip to content

move lint and valgrind jobs into analysis suite #6

move lint and valgrind jobs into analysis suite

move lint and valgrind jobs into analysis suite #6

Workflow file for this run

name: analysis
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
jobs:
cpplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: |
pip install cpplint
sudo apt-get update
sudo apt-get install -qq valgrind libcurl4-openssl-dev
- name: build
run: |
./autogen.sh
./configure --enable-coverage
- name: run cpplint
run: make lint
valgrind:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: |
pip install cpplint
sudo apt-get update
sudo apt-get install -qq valgrind libcurl4-openssl-dev
- name: build googletest
run: ./utils/build_gtest.sh
- name: build
run: |
./autogen.sh
./configure --enable-coverage
- name: run valgrind
run: make valgrind