Skip to content

Commit 2d8765c

Browse files
authored
Add files via upload
1 parent 7b6be45 commit 2d8765c

File tree

5 files changed

+121
-0
lines changed

5 files changed

+121
-0
lines changed

.github/workflows/python-310.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: python-310
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 0 * * *'
7+
8+
jobs:
9+
sync:
10+
uses: ./.github/workflows/sync.yml
11+
with:
12+
tx_project: ${{ github.workflow }}
13+
version: '3.10'
14+
secrets: inherit
15+
check:
16+
uses: ./.github/workflows/check.yml
17+
needs: sync
18+
with:
19+
tx_project: ${{ github.workflow }}
20+
version: '3.10'
21+
secrets: inherit

.github/workflows/python-311.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: python-311
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '45 23 * * *'
7+
8+
jobs:
9+
sync:
10+
uses: ./.github/workflows/sync.yml
11+
with:
12+
tx_project: ${{ github.workflow }}
13+
version: '3.11'
14+
secrets: inherit
15+
check:
16+
uses: ./.github/workflows/check.yml
17+
needs: sync
18+
with:
19+
tx_project: ${{ github.workflow }}
20+
version: '3.11'
21+
secrets: inherit

.github/workflows/python-312.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: python-312
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '30 23 * * *'
7+
8+
jobs:
9+
sync:
10+
uses: ./.github/workflows/sync.yml
11+
with:
12+
tx_project: ${{ github.workflow }}
13+
version: '3.12'
14+
secrets: inherit
15+
check:
16+
uses: ./.github/workflows/check.yml
17+
needs: sync
18+
with:
19+
tx_project: ${{ github.workflow }}
20+
version: '3.12'
21+
secrets: inherit

.github/workflows/python-313.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: python-313
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '15 23 * * *'
7+
pull_request:
8+
branches:
9+
- main
10+
- '3.13'
11+
push:
12+
branches:
13+
- main
14+
- '3.13'
15+
16+
jobs:
17+
sync:
18+
uses: ./.github/workflows/sync.yml
19+
with:
20+
tx_project: ${{ github.workflow }}
21+
version: 3.13
22+
secrets: inherit
23+
check:
24+
uses: ./.github/workflows/check.yml
25+
needs: sync
26+
with:
27+
tx_project: ${{ github.workflow }}
28+
version: 3.13
29+
secrets: inherit

.github/workflows/python-314.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: python-314
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 23 * * *'
7+
pull_request:
8+
branches:
9+
- main
10+
- '3.14'
11+
push:
12+
branches:
13+
- main
14+
- '3.14'
15+
16+
jobs:
17+
sync:
18+
uses: ./.github/workflows/sync.yml
19+
with:
20+
tx_project: python-newest
21+
version: 3.14
22+
secrets: inherit
23+
check:
24+
uses: ./.github/workflows/check.yml
25+
needs: sync
26+
with:
27+
tx_project: python-newest
28+
version: 3.14
29+
secrets: inherit

0 commit comments

Comments
 (0)