-
Notifications
You must be signed in to change notification settings - Fork 82
35 lines (30 loc) · 1 KB
/
tensorflow_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: TensorFlow CI Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
branches: [main]
jobs:
TensorFlow-Tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
# Runs a set of commands using the runners shell
- name: Install dependencies
shell: bash -l {0}
run: |
sudo apt-get update
sudo apt install -y python3-pip
pip3 install -r requirements.txt --upgrade
pip3 install tensorflow tensorflow-datasets
pip3 uninstall protobuf
pip3 install protobuf==3.20.3
- name: Training workloads
shell: bash -l {0}
run: |
./run --config=configs/MNIST/fedavg_lenet5_tensorflow.yml