mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Separate out valgrind github action.
This commit is contained in:
parent
b4fdf908df
commit
444882e828
20
.github/workflows/make_actions.yml
vendored
20
.github/workflows/make_actions.yml
vendored
@ -54,23 +54,3 @@ jobs:
|
||||
|
||||
- name: test examples
|
||||
run: ${{ matrix.make_flags }} make examples V=1
|
||||
|
||||
valgrind:
|
||||
name:
|
||||
Test for memory leaks with valgrind
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CC: gcc
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- 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: ${{ matrix.make_flags }} make test_valgrind V=1
|
||||
|
28
.github/workflows/valgrind.yml
vendored
Normal file
28
.github/workflows/valgrind.yml
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
name: Test for memory leaks with valgrind
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name:
|
||||
Test for memory leaks with valgrind
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CC: gcc
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- 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
|
Loading…
x
Reference in New Issue
Block a user