Addind some documentation in README.md
for concurrent heap implemen…
#81
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: check-build | |
on: | |
push: | |
branches-ignore: ["gh-pages"] # Exclude the gh-pages branch | |
pull_request: | |
branches-ignore: ["gh-pages"] # Exclude the gh-pages branch | |
workflow_dispatch: | |
branches: ["*"] # Included ["*"] for consistency | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install libnuma-dev | |
run: sudo apt-get -y install libnuma-dev | |
- name: make clean | |
run: make clean | |
- name: make | |
run: make |