Set github actions to run on all branches.

This commit is contained in:
John McNamara 2022-02-16 00:34:07 +00:00
parent 3b3945de84
commit 7c6aa7838f
2 changed files with 1 additions and 7 deletions

View File

@ -2,9 +2,7 @@ name: Build with CMake
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:

View File

@ -2,9 +2,7 @@ name: Test for memory leaks with valgrind
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
@ -19,10 +17,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
sudo apt-get -y install valgrind
sudo apt-get -y install zlib1g-dev
- name: test valgrind
run: make test_valgrind V=1 -j
run: make test_valgrind V=1 -j 2