Skip to content

Commit 2e221c8

Browse files
committed
disable the lfs for now as we are running out of disk space and we try and build the mini conda env
1 parent 54c05a8 commit 2e221c8

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,19 @@ jobs:
2626
- name: Check out repository
2727
uses: actions/checkout@v3
2828
with:
29-
lfs: true # Enable Git LFS support
29+
lfs: false # Enable Git LFS support
3030

31-
# Step 2: Set up Python environment
32-
- name: Set up Python 3.11
33-
uses: actions/setup-python@v4
31+
# Step 1: Set up Miniconda
32+
- name: Set up Miniconda
33+
uses: conda-incubator/setup-miniconda@v2
3434
with:
35-
python-version: '3.11'
35+
auto-update-conda: true
36+
python-version: 3.11
37+
environment-file: environment.yml
38+
activate-environment: OpenVPCal
39+
40+
# Step 2: Create and activate the conda environment (if not using environment.yml)
41+
- name: Create and activate conda environment
42+
run: |
43+
conda create --name OpenVPCal python=3.11 -y
44+
conda activate OpenVPCal

0 commit comments

Comments
 (0)