forked from a2aproject/a2a-python
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (31 loc) · 836 Bytes
/
nightly.yaml
File metadata and controls
38 lines (31 loc) · 836 Bytes
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
36
37
38
name: Nightly ITK
on:
schedule:
- cron: '0 2 * * *' # 2:00 AM UTC daily
workflow_dispatch: # Allow manual execution
permissions:
contents: write
jobs:
nightly:
name: Nightly ITK Run
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Run Nightly ITK Tests
run: bash run_itk.sh
working-directory: itk
env:
A2A_ITK_REVISION: main
ITK_NIGHTLY_RUN: "True"
- name: Upload Results to Rolling Release
uses: softprops/action-gh-release@v3
with:
tag_name: "nightly-metrics"
prerelease: true
files: |
itk/itk_python.json
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}