march 31 - 1.0.10 #42
This file contains hidden or 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
| name: In-Mem Leak Ubuntu | |
| on: | |
| push: | |
| branches: [ dev ] | |
| pull_request: | |
| branches: [ dev ] | |
| jobs: | |
| in-memory-tests-ubuntu: | |
| name: In-Memory Leak Tests Ubuntu | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24' | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Set up zsh | |
| run: | | |
| sudo apt-get remove --purge man-db | |
| sudo apt-get -y install zsh | |
| - name: Run in-memory leak tests | |
| run: | | |
| make node_inmem_memory | |