zip loadable extensions so people do not need to rename them #2014
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
on: | |
pull_request: | |
name: "c-valgrind" | |
jobs: | |
build: | |
name: Testing on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
#- os: windows-2022 | |
#- os: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Load .env file | |
uses: xom9ikk/dotenv@v2 | |
with: | |
path: ./ | |
- name: Install valgrind | |
run: sudo apt update && sudo apt install -y valgrind | |
- name: Valgrind Test | |
run: | | |
cd core | |
make test | |
valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes -s dist/test |