-
Notifications
You must be signed in to change notification settings - Fork 39
35 lines (30 loc) · 994 Bytes
/
conda_install_check.yml
File metadata and controls
35 lines (30 loc) · 994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# As conda is the recommended installation method, run weekly checks
# to ensure
name: conda install check
on:
schedule:
# Weekly cron job at 12:00 AM UTC on Mondays.
- cron: '0 0 * * 1'
jobs:
conda_install_check:
name: Conda install check (${{ matrix.os }} py${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-14, macos-15-intel]
python-version: ["3.9", "3.10", "3.11", "3.12"]
defaults:
run:
shell: bash -l {0} # Required for conda activation
steps:
- uses: actions/checkout@v6
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
auto-update-conda: true
channels: conda-forge
activate-environment: "datashuttle-test"
- name: Check conda installation
run: |
conda install -c conda-forge datashuttle
datashuttle --help