Skip to content
This repository has been archived by the owner on Nov 10, 2024. It is now read-only.

fix: fix ci not run #208

Merged
merged 1 commit into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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