Skip to content

Commit

Permalink
Forget conda as wont work on windows because of oiio
Browse files Browse the repository at this point in the history
  • Loading branch information
davisadam10 committed Aug 3, 2024
1 parent 22762af commit 2baf4d2
Showing 1 changed file with 11 additions and 18 deletions.
29 changes: 11 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,25 +28,18 @@ jobs:
with:
lfs: false # Disable Git LFS

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

# Step 2: Initialize Conda
- name: Initialize Conda
shell: bash
# Install dependencies
# Step 1: Install dependencies
- name: Install dependencies
run: |
conda init
brew update
brew install pkg-config autoconf automake autoconf-archive
# Step 4: Run unit tests
- name: Run unit tests
shell: bash
run: |
conda activate OpenVPCal
pytest tests

0 comments on commit 2baf4d2

Please sign in to comment.