Ragna base poc #5
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: Build Package | |
on: | |
pull_request: | |
push: | |
branches: | |
- release/* | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: | |
- ragna | |
- ragna-base | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install pipx | |
run: python -m pip install --user pipx | |
- name: Ensure pipx binaries are on PATH | |
run: | | |
echo "::add-path::${HOME}/.local/bin" | |
python -m pipx ensurepath | |
- name: Install build using pipx | |
run: pipx install build | |
- name: Set BUILD_RAGNA_BASE environment variable | |
run: | | |
if [ "${{ matrix.package }}" == "ragna-base" ]; then | |
echo "BUILD_RAGNA_BASE=1" >> $GITHUB_ENV | |
else | |
echo "BUILD_RAGNA_BASE=" >> $GITHUB_ENV | |
fi | |
- name: Build distribution | |
run: | | |
echo "Building package: ${{ matrix.package }}" | |
pipx run build | |
- name: Verify package | |
run: | | |
echo "Verifying package: ${{ matrix.package }}" | |
pip install dist/*.whl | |
pip check | |
- name: Visualize dependency tree of built package | |
run: | | |
pip install pipdeptree | |
pipdeptree -d 1 |