Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Jan 4, 2024
1 parent fa672f1 commit 1208669
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,20 +80,20 @@ jobs:
- id: install-python-dependencies
name: Install Python dependencies
run: |
$CONDA/bin/conda create -n base python=${{ matrix.python }}
$CONDA/bin/conda install -n base requests click python-dateutil pandas
$CONDA/bin/conda create -n cpi python=${{ matrix.python }}
$CONDA/bin/conda install -n cpi requests click python-dateutil pandas
- id: download-data
name: Download data
run: $CONDA/bin/conda run -n base python cpi/download.py
run: $CONDA/bin/conda run -n cpi python cpi/download.py

- id: tests
name: Run tests
run: $CONDA/bin/conda run -n base python tests.py
run: $CONDA/bin/conda run -n cpi python tests.py

- id: update
name: Update data
run: $CONDA/bin/conda run -n base python cpi/download.py
run: $CONDA/bin/conda run -n cpi python cpi/download.py

test-build:
name: Build Python package
Expand Down

0 comments on commit 1208669

Please sign in to comment.