Skip to content

Commit

Permalink
try to force casadata to install first for real (#33)
Browse files Browse the repository at this point in the history
* try to force casadata to install first for real

* try to set datapath via config

* try adding a "whatever" trigger

* add "edited" trigger
  • Loading branch information
keflavich authored May 31, 2024
1 parent 4e67c00 commit a1fd50c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
pull_request_target:
types:
- opened
- edited

jobs:
build:
Expand All @@ -22,7 +23,11 @@ jobs:
cache: 'pip'

- name: Install requirements
run: pip install -r requirements.txt
run: |
echo "datapath='${GITHUB_WORKSPACE}/.casa/'" > $GITHUB_WORKSPACE/config.py
export CASASITECONFIG=$GITHUB_WORKSPACE/config.py
pip install casadata # force this first?
pip install -r requirements.txt
- name: Export notebooks
run: |
Expand Down

0 comments on commit a1fd50c

Please sign in to comment.