Add API for asking whether the pool is empty #1124
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
| name: "CodeQL" | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '43 21 * * 3' | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v1 | |
| with: | |
| languages: cpp | |
| - name: Install dependencies | |
| run: sudo ./tests/ci/install-deps-deb.sh | |
| - name: Update Meson | |
| run: sudo pip install 'meson~=0.62' | |
| - name: Build | |
| run: CC=gcc CXX=g++ ./tests/ci/run-build.sh codeql | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v1 |