Skip to content
Merged
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
with:
path: .venv
key: venv-${{ runner.os }}-3.9-${{ hashFiles('**/poetry.lock', '**/pyproject.toml') }}
- run: make setup-dev
- run: make check-format
# Run Linting
lint:
Expand All @@ -70,6 +71,7 @@ jobs:
with:
path: .venv
key: venv-${{ runner.os }}-3.9-${{ hashFiles('**/poetry.lock', '**/pyproject.toml') }}
- run: make setup-dev
- run: make check-lint
# Run Tests
test:
Expand All @@ -89,6 +91,7 @@ jobs:
with:
path: .venv
key: venv-${{ runner.os }}-3.9-${{ hashFiles('**/poetry.lock', '**/pyproject.toml') }}
- run: make setup-dev
- run: make test
# Build Docs
docs_build:
Expand All @@ -108,6 +111,7 @@ jobs:
with:
path: .venv
key: venv-${{ runner.os }}-3.9-${{ hashFiles('**/poetry.lock', '**/pyproject.toml') }}
- run: make setup-dev
- run: make docs
- uses: actions/upload-pages-artifact@v3
with:
Expand Down