8000 fix: fix ci not run (#208) · pavelzw/fastapi-utils@a28f406 · GitHub
[go: up one dir, main page]

Skip to content

Commit a28f406

Browse files
authored
fix: fix ci not run (fastapiutils#208)
Co-authored-by: Oli Parker <oliver.parker@gridedge.co.uk>
1 parent 22e61d2 commit a28f406

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,7 @@ jobs:
4949
# only run this for the python version used by netlify:
5050
if: matrix.python-version == '3.10'
5151
run: poetry run make docs-build
52-
- name: Check that formatting, linting, and tests pass
53-
run: poetry run make ci
52+
- name: Check that formatting, linting, and tests pass for pydantic v1
53+
run: poetry run make ci-v1
54+
- name: Check that formatting, linting, and tests pass for pydantic v2
55+
run: poetry run make ci-v2

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ jobs:
2727
- name: Install dependencies
2828
run: poetry install -E session
2929

30-
- name: Check that formatting, linting, and tests pass
31-
run: poetry run make ci
30+
- name: Check that formatting, linting, and tests pass for pydantic v1
31+
run: poetry run make ci-v1
32+
- name: Check that formatting, linting, and tests pass for pydantic v2
33+
run: poetry run make ci-v2
3234

3335
- name: Check docs are up to date
3436
run: poetry run make docs-build

0 commit comments

Comments
 (0)
0