We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd132d7 commit 93afc7aCopy full SHA for 93afc7a
.github/workflows/install.yml
@@ -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