File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed
Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments