Skip to content

Commit

Permalink
Try forcing macos runner to 13 instead of latest
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieuboudreau committed May 2, 2024
1 parent d644990 commit b864bc5
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
os: [ "ubuntu-latest", "macos-13", "windows-latest" ]
python-version: [ "3.8" ]

# Main steps for the test to be reproduced across OS x Python
Expand All @@ -64,10 +64,12 @@ jobs:
# Step 2: Install environment.
- name: Install Conda Env All OS
run: |
conda update
conda install environment.yml
conda activate ads_env
uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{matrix.python-version}}
activate-environment: ads_venv
auto-update-conda: true
environment-file: environment.yml

# Step 3: List conda info, conda packages
- name: Conda info and list
Expand Down

0 comments on commit b864bc5

Please sign in to comment.