We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9fe5bd commit 33c12f5Copy full SHA for 33c12f5
.github/workflows/codspeed.yml
@@ -26,6 +26,27 @@ jobs:
26
pdm venv create --with-pip --force $PYTHON
27
pdm install -G testing -G testing-extra -G email
28
29
+ # override pydantic-core from git - to report benchmarks
30
+ # FIXME DO NOT MERGE THIS
31
+
32
+ - uses: actions/checkout@v4
33
+ with:
34
+ repository: pydantic/pydantic-core
35
+ ref: boxy/validator_serializer_reuse
36
+ path: pydantic-core
37
38
+ - name: install rust stable
39
+ uses: dtolnay/rust-toolchain@nightly
40
41
+ components: llvm-tools-preview
42
43
+ - run: |
44
+ pdm venv activate
45
+ cd pydantic-core
46
+ make build-pgo
47
48
+ # END
49
50
- name: Run CodSpeed benchmarks
51
uses: CodSpeedHQ/action@v3
52
with:
0 commit comments