Skip to content

Commit 93afc7a

Browse files
authored
ci: Support wider variety of platforms (#191)
--------- Signed-off-by: oliver könig <[email protected]>
1 parent cd132d7 commit 93afc7a

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/install.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Run install
2+
3+
on:
4+
workflow_dispatch:
5+
workflow_call:
6+
push:
7+
branches: [main]
8+
pull_request:
9+
10+
jobs:
11+
test:
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
os: [ubuntu-latest, macos-latest, ubuntu-22.04-arm]
17+
python: ["3.10", "3.11", "3.12"]
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- name: Setup Python
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: "${{ matrix.python }}"
25+
26+
- name: Install NeMo-Run
27+
run: |
28+
pip install --no-cache-dir -U pip
29+
pip install --no-cache-dir ".[all]"

0 commit comments

Comments
 (0)