Skip to content

Commit

Permalink
fix: fix ci not run (fastapiutils#208)
Browse files Browse the repository at this point in the history
Co-authored-by: Oli Parker <[email protected]>
  • Loading branch information
ollz272 and ollz272 authored Aug 4, 2023
1 parent 22e61d2 commit a28f406
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,7 @@ jobs:
# only run this for the python version used by netlify:
if: matrix.python-version == '3.10'
run: poetry run make docs-build
- name: Check that formatting, linting, and tests pass
run: poetry run make ci
- name: Check that formatting, linting, and tests pass for pydantic v1
run: poetry run make ci-v1
- name: Check that formatting, linting, and tests pass for pydantic v2
run: poetry run make ci-v2
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ jobs:
- name: Install dependencies
run: poetry install -E session

- name: Check that formatting, linting, and tests pass
run: poetry run make ci
- name: Check that formatting, linting, and tests pass for pydantic v1
run: poetry run make ci-v1
- name: Check that formatting, linting, and tests pass for pydantic v2
run: poetry run make ci-v2

- name: Check docs are up to date
run: poetry run make docs-build
Expand Down

0 comments on commit a28f406

Please sign in to comment.