Move pool_dep_fulfilled_in_map into pooldep.c #243
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 0.6.x | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup | |
| run: | | |
| sudo apt-get install cmake liblzma-dev | |
| - name: Build | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake -DDEBIAN=1 -DMULTI_SEMANTICS=1 -DCMAKE_VERBOSE_MAKEFILE=TRUE .. | |
| make | |
| - name: Test | |
| run: | | |
| cd build | |
| make test |