We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c3d89c6 + d6118bb commit c379159Copy full SHA for c379159
1 file changed
.github/workflows/monitor-pool-usage.yml .github/workflows/pool-telemetry.yml.github/workflows/monitor-pool-usage.yml renamed to .github/workflows/pool-telemetry.yml
@@ -1,4 +1,4 @@
1
-name: Monitor Pool Usage
+name: Pool Usage Telemetry
2
3
on:
4
schedule:
@@ -7,24 +7,30 @@ on:
7
workflow_dispatch: # Allow manual trigger
8
9
jobs:
10
- monitor:
+ telemetry:
11
runs-on: ubuntu-latest
12
13
+ defaults:
14
+ run:
15
+ shell: bash -l {0}
16
+
17
steps:
18
- name: Checkout repository
19
uses: actions/checkout@v4
20
21
- name: Set up Python
22
uses: actions/setup-python@v5
23
with:
- python-version: '3.10'
24
+ python-version: '3.12'
25
+ cache: 'pip'
26
- - name: Install dependencies
27
+ - name: Install Python dependencies
28
+ working-directory: ./dev
29
run: |
30
pip install -r requirements.txt
31
pip install wandb>=0.16
32
- - name: Run monitoring script
33
+ - name: Run telemetry script
34
env:
35
WANDB_API_KEY: ${{ secrets.WANDB_API_KEY }}
36
0 commit comments