Skip to content

Commit 92e145a

Browse files
Update from copier (2026-08-02T07:33:17)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2611692 commit 92e145a

4 files changed

Lines changed: 86 additions & 9 deletions

File tree

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: c2ea129
2+
_commit: b2cdb6d
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: js

.github/workflows/build.yaml

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
airflow: ["2", "3", ""]
3636

3737
steps:
38+
<<<<<<< before updating
3839
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3940
with:
4041
persist-credentials: false
@@ -111,3 +112,78 @@ jobs:
111112
name: dist-${{matrix.os}}
112113
path: dist
113114
if: ${{ matrix.airflow == '2' }}
115+
=======
116+
- name: Checkout
117+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
118+
with:
119+
persist-credentials: false
120+
121+
- name: Setup Python
122+
uses: actions-ext/python/setup@6e1b91a408ea89f49bc8aff8724f83826f7b5446
123+
with:
124+
version: ${{ matrix.python-version }}
125+
126+
- name: Setup Node.js
127+
uses: actions-ext/node/setup@0ea5bdcd24d2488b28e16bf611b446a2f8e1e12f
128+
with:
129+
version: ${{ matrix.node-version }}
130+
131+
- name: Install dependencies
132+
run: make develop
133+
134+
- name: Lint
135+
run: make lint
136+
if: matrix.os == 'ubuntu-latest'
137+
138+
- name: Checks
139+
run: make checks
140+
if: matrix.os == 'ubuntu-latest'
141+
142+
- name: Build
143+
run: make build
144+
145+
- name: Test
146+
run: make coverage
147+
if: matrix.os == 'ubuntu-latest'
148+
149+
- name: Upload test results
150+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
151+
with:
152+
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.node-version }}
153+
path: '**/junit.xml'
154+
if: ${{ always() }}
155+
156+
- name: Publish test results
157+
uses: EnricoMi/publish-unit-test-result-action@d0a4676d0e0b938bc201470d88276b7c74c712b3 # v2.24.0
158+
with:
159+
files: '**/junit.xml'
160+
if: matrix.os == 'ubuntu-latest'
161+
162+
- name: Upload coverage
163+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
164+
with:
165+
token: ${{ secrets.CODECOV_TOKEN }}
166+
167+
- name: Build distributions
168+
run: make dist
169+
if: matrix.os == 'ubuntu-latest'
170+
171+
- name: Test wheel
172+
uses: actions-ext/python/test-wheel@6e1b91a408ea89f49bc8aff8724f83826f7b5446
173+
with:
174+
module: airflow_balancer
175+
if: matrix.os == 'ubuntu-latest'
176+
177+
- name: Test source distribution
178+
uses: actions-ext/python/test-sdist@6e1b91a408ea89f49bc8aff8724f83826f7b5446
179+
with:
180+
module: airflow_balancer
181+
if: matrix.os == 'ubuntu-latest'
182+
183+
- name: Upload distributions
184+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
185+
with:
186+
name: dist-${{matrix.os}}
187+
path: dist
188+
if: matrix.os == 'ubuntu-latest'
189+
>>>>>>> after updating

.github/workflows/copier.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
pull-requests: write
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions-ext/copier-update@378500315a83b5985e175139a55f1fa5ea6dde09
16-
with:
17-
token: ${{ secrets.WORKFLOW_TOKEN }}
15+
- name: Update from Copier
16+
uses: actions-ext/copier/update@2061209faa6b75ffd4fcecc0b0983772767997f4
17+
with:
18+
token: ${{ secrets.WORKFLOW_TOKEN }}

js/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@
4444
"lit": "^3.3.2"
4545
},
4646
"devDependencies": {
47-
"@playwright/test": "^1.60.0",
47+
"@playwright/test": "^1.62.0",
4848
"cpy": "^13.2.2",
49-
"esbuild": "^0.28.0",
50-
"lightningcss": "^1.29.3",
49+
"esbuild": "^0.28.1",
50+
"lightningcss": "^1.33.0",
5151
"http-server": "^14.1.1",
5252
"nodemon": "^3.1.10",
5353
"npm-run-all": "^4.1.5",
54-
"prettier": "^3.8.1",
55-
"typescript": "^6.0.2"
54+
"prettier": "^3.9.6",
55+
"typescript": "^7.0.2"
5656
}
5757
}

0 commit comments

Comments
 (0)