Skip to content

Commit 766d396

Browse files
authored
Update multiversion_test.yml
1 parent 3574c67 commit 766d396

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/multiversion_test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
name: Test Multi-Version TensorFlow Capability
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
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+
129
- name: Test multi-version capability
230
run: |
331
echo "--- Testing Multi-Version TensorFlow Capability ---"

0 commit comments

Comments
 (0)