-
Notifications
You must be signed in to change notification settings - Fork 5
80 lines (69 loc) · 1.68 KB
/
Copy pathci.yml
File metadata and controls
80 lines (69 loc) · 1.68 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: CI
on:
push:
branches:
- main
tags:
- "*"
pull_request:
jobs:
require-label:
if: github.event_name == 'pull_request'
uses: ./.github/workflows/_label.yml
lint:
uses: ./.github/workflows/_tox.yml
with:
tox: pre-commit,type-checking
skip_hooks: local-install-dodal,type-checking,uv-sync
test:
strategy:
matrix:
runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest
python-version: ["3.11", "3.12", "3.13"]
fail-fast: false
uses: ./.github/workflows/_test.yml
with:
runs-on: ${{ matrix.runs-on }}
python-version: ${{ matrix.python-version }}
container:
needs: test
if: always()
uses: ./.github/workflows/_container.yml
with:
publish: ${{ needs.test.result == 'success' }}
permissions:
contents: read
packages: write
debug_container:
needs: [container, test]
uses: ./.github/workflows/_debug_container.yml
with:
publish: ${{ needs.test.result == 'success' }}
permissions:
contents: read
packages: write
helm:
needs: container
if: needs.check.outputs.branch-pr == ''
uses: ./.github/workflows/_helm.yml
permissions:
contents: read
packages: write
docs:
uses: ./.github/workflows/_docs.yml
permissions:
contents: write
dist:
uses: ./.github/workflows/_dist.yml
pypi:
needs: [dist, test]
if: github.ref_type == 'tag'
uses: ./.github/workflows/_pypi.yml
permissions:
id-token: write
release:
needs: [dist, test, docs]
if: github.ref_type == 'tag'
uses: ./.github/workflows/_release.yml
permissions:
contents: write