Skip to content

Commit

Permalink
🎨 see if tag is picked up from local install
Browse files Browse the repository at this point in the history
  • Loading branch information
enryh committed Dec 24, 2024
1 parent 29542fd commit c657c74
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/colab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,17 @@ jobs:
image: europe-docker.pkg.dev/colab-images/public/runtime:latest
steps:
- uses: actions/checkout@v4
- name: Install pimms-learn (from branch) and papermill
- name: Dev - Install njab (from branch) - optional
if: github.event_name == 'push'
run: |
echo $GITHUB_REF
echo GITHUB_REF= $GITHUB_REF
echo GITHUB_SHA= $GITHUB_SHA
echo "Branch or Tag: ${{ github.ref }}"
# pip install .
pip install git+https://github.com/RasmussenLab/njab.git@$GITHUB_SHA
pip install .
# pip install git+https://github.com/RasmussenLab/njab.git@$GITHUB_SHA
cd docs
echo
echo Installed version of njab:
python3 -c "import njab; print(njab.__version__)"
- name: Test tutorials
run: |
Expand Down

0 comments on commit c657c74

Please sign in to comment.