Skip to content

Commit

Permalink
Use different runners
Browse files Browse the repository at this point in the history
  • Loading branch information
malfet committed Oct 30, 2024
1 parent f6ff27b commit 79dc686
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/install_torch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,22 @@ on:

jobs:
install_torch:
runs-on: macos-15
strategy:
fail-fast: false
matrix:
os: ["macos-latest", "macos-15"]
runs-on: ${{ matrix.os }}
steps:
- name: Install Python-3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Print some system info
- name: Print Python version
shell: bash -l {0}
run: sw_vers; python --version; arch
run: python --version
- name: Print Python3 version
shell: bash -l {0}
run: python3 --version
- name: Install PyTorch and Numpy
shell: bash -l {0}
run: pip install torch numpy
Expand Down

0 comments on commit 79dc686

Please sign in to comment.