File tree Expand file tree Collapse file tree 6 files changed +57
-2582
lines changed Expand file tree Collapse file tree 6 files changed +57
-2582
lines changed Original file line number Diff line number Diff line change 11
11
workflow_dispatch :
12
12
13
13
env :
14
- NODE_VERIONS : 22
14
+ NODE_VERION : 22
15
15
REGISTRY : ghcr.io
16
16
17
17
jobs :
43
43
cache-from : type=gha
44
44
cache-to : type=gha,mode=max
45
45
tags : workflow-create-subtraction:base
46
+ ruff-format :
47
+ name : Ruff / Format
48
+ runs-on : ubuntu-latest
49
+ steps :
50
+ - name : Checkout
51
+ uses : actions/checkout@v4
52
+ - name : Install mise
53
+ uses : jdx/mise-action@v2
54
+ - name : Install uv
55
+ uses : astral-sh/setup-uv@v4
56
+ with :
57
+ version : " latest"
58
+ - name : Set up Python
59
+ run : uv python install
60
+ - name : Install dependencies
61
+ run : uv sync
62
+ - name : Check formatting
63
+ run : uv run ruff format --check .
64
+ ruff-format :
65
+ name : Ruff / Format
66
+ runs-on : ubuntu-latest
67
+ steps :
68
+ - name : Checkout
69
+ uses : actions/checkout@v4
70
+ - name : Install mise
71
+ uses : jdx/mise-action@v2
72
+ - name : Install uv
73
+ uses : astral-sh/setup-uv@v4
74
+ with :
75
+ version : " latest"
76
+ - name : Set up Python
77
+ run : uv python install
78
+ - name : Install dependencies
79
+ run : uv sync
80
+ - name : Check formatting
81
+ run : uv run ruff check .
46
82
test :
47
83
name : " Test"
48
84
runs-on : ubuntu-latest
@@ -107,4 +143,4 @@ jobs:
107
143
labels : ${{ steps.meta.outputs.labels }}
108
144
push : true
109
145
tags : ${{ steps.meta.outputs.tags }}
110
- target : " base"
146
+ target : " base"
You can’t perform that action at this time.
0 commit comments