CI #4
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: [main, dev] | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install build toolchain | |
| run: sudo apt-get update && sudo apt-get install -y cmake g++ | |
| - name: Install MMseqs2 (static binary) | |
| run: | | |
| curl -fsSL https://mmseqs.com/latest/mmseqs-linux-avx2.tar.gz -o mmseqs.tar.gz | |
| tar xzf mmseqs.tar.gz | |
| echo "ARDA_MMSEQS=$PWD/mmseqs/bin/mmseqs" >> "$GITHUB_ENV" | |
| - name: Install arda (builds the C++ extension) | |
| # Install build deps into the runtime env and build without isolation, so | |
| # the editable on-import rebuild (editable.rebuild=true) can find pybind11. | |
| run: | | |
| pip install scikit-build-core pybind11 ninja | |
| pip install -e .[test] --no-build-isolation | |
| - name: Show environment | |
| run: | | |
| "$ARDA_MMSEQS" version | |
| python -c "import arda, arda._markup as m; print('arda', arda.__version__, '_markup', m.__version__)" | |
| # Unit + synthetic + real-world (offline, against committed fixtures + DB). | |
| # The committed mmseqs indexes are version-tagged; if CI's mmseqs differs, | |
| # arda transparently rebuilds a private cache — this also exercises that path. | |
| - name: Run tests | |
| run: python -m pytest tests/unit tests/synthetic tests/realworld -q |