Skip to content

Commit

Permalink
disable the lfs for now as we are running out of disk space and we tr…
Browse files Browse the repository at this point in the history
…y and build the mini conda env
  • Loading branch information
davisadam10 committed Aug 3, 2024
1 parent 54c05a8 commit 2e221c8
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,19 @@ jobs:
- name: Check out repository
uses: actions/checkout@v3
with:
lfs: true # Enable Git LFS support
lfs: false # Enable Git LFS support

# Step 2: Set up Python environment
- name: Set up Python 3.11
uses: actions/setup-python@v4
# Step 1: Set up Miniconda
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
python-version: '3.11'
auto-update-conda: true
python-version: 3.11
environment-file: environment.yml
activate-environment: OpenVPCal

# Step 2: Create and activate the conda environment (if not using environment.yml)
- name: Create and activate conda environment
run: |
conda create --name OpenVPCal python=3.11 -y
conda activate OpenVPCal

0 comments on commit 2e221c8

Please sign in to comment.