Skip to content

Commit

Permalink
Fix data cache env variable in ci build (#3062)
Browse files Browse the repository at this point in the history
* Fix data cache env variable in ci build

* Check that datasets are where we expect

* Try to reference as a context property
  • Loading branch information
mwaskom committed Oct 8, 2022
1 parent 6d6f8d3 commit c412ddf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -12,7 +12,7 @@ on:
env:
NB_KERNEL: python
MPLBACKEND: Agg
SEABORN_DATA: ~/seaborn-data
SEABORN_DATA: ${{ github.workspace }}/seaborn-data

jobs:
build-docs:
Expand All @@ -37,6 +37,7 @@ jobs:
- name: Cache datasets
run: |
git clone https://github.com/mwaskom/seaborn-data.git
ls $SEABORN_DATA
- name: Build docs
env:
Expand Down

0 comments on commit c412ddf

Please sign in to comment.