Skip to content

Commit 418e023

Browse files
committed
Use --help not --version.
1 parent f77ae97 commit 418e023

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/code_test_and_deploy.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,8 @@ jobs:
4646
channels: conda-forge
4747
activate-environment: "datashuttle-test"
4848

49-
# Here we test the repo dependencies so that dependency updates
50-
# in the pyproject.toml are installed in the environment.
51-
# Conda installation is tested in a separate workflow and conda release pipeline.
49+
# The recommended installation is via conda, but we need to test
50+
# pip dependencies so any dependency changes in a PR are reflected
5251
- name: Install rclone
5352
run: |
5453
conda activate datashuttle-test

.github/workflows/conda_install_check.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
# As conda is the recommended installation method, run weekly checks
2+
# to ensure
13
name: conda install check
24

35
on:
46
schedule:
5-
# Weekly cron job at 12:00 AM UTC on Mondays
67
- cron: '0 0 * * 1'
78

89
jobs:
@@ -31,7 +32,7 @@ jobs:
3132
run: |
3233
conda activate datashuttle-test
3334
conda install -c conda-forge datashuttle
34-
- name: Run datashuttle --version
35+
- name: Run datashuttle --help
3536
run: |
3637
conda activate datashuttle-test
3738
datashuttle --version

0 commit comments

Comments
 (0)