Skip to content

Commit

Permalink
feat: run on macos too
Browse files Browse the repository at this point in the history
  • Loading branch information
enricorotundo committed Feb 11, 2025
1 parent efccd9b commit c16645e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ on: [push]

jobs:
install-deps:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-14]

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -14,14 +18,9 @@ jobs:

# override defaults
- run: echo -e "\n" >> .env
# - run: echo "OLLAMA_MODELS=" >> .env
# - run: echo "VLLM_MODELS=" >> .env
# - run: echo "OPENAI_MODELS=" >> .env
- run: echo "LOCAL_HUB=true" >> .env




# set dummy user
- run: echo "PRIVATE_KEY=138f0cf400f34e8c8ac821c7a86bca98186b880dc0b48f2c55de47bc7f121d56" >> .env
- run: echo "HUB_USERNAME=cicd_dummy" >> .env
- run: echo "HUB_PASSWORD=cicd_dummy" >> .env
Expand Down

0 comments on commit c16645e

Please sign in to comment.