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 3574c67 commit 766d396Copy full SHA for 766d396
1 file changed
.github/workflows/multiversion_test.yml
@@ -1,3 +1,31 @@
1
+name: Test Multi-Version TensorFlow Capability
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test-multi-version:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: '3.10' # Specify the Python version; adjust as needed
23
24
+ - name: Install dependencies
25
+ run: |
26
+ python -m pip install --upgrade pip
27
+ pip install omnipkg # Assuming omnipkg is a required dependency; adjust if needed
28
29
- name: Test multi-version capability
30
run: |
31
echo "--- Testing Multi-Version TensorFlow Capability ---"
0 commit comments