Skip to content

Cleanup deps #151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
May 6, 2025
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
35 changes: 0 additions & 35 deletions .github/workflows/build-deploy-documentation.yaml

This file was deleted.

3 changes: 3 additions & 0 deletions .github/workflows/check-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,6 @@ jobs:
run: |
poetry run pip install -U pytest
poetry run pytest tests/

- name: Check project dependencies
run: make check-dependencies
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ RUN = poetry run
VERSION = $(shell git tag | tail -1)
MODELS = cadsr frictionless

.PHONY: all clean test all-docs sphinx-html
.PHONY: all clean test all-docs sphinx-html check-dependencies

all: clean test

Expand All @@ -13,6 +13,8 @@ test:
schema_automator/metamodels/%.py: schema_automator/metamodels/%.yaml
$(RUN) gen-python $< > $@.tmp && mv $@.tmp $@

check-dependencies:
$(RUN) deptry schema_automator --known-first-party schema_automator

# create a convenient wrapper script;
# this can be used outside the poetry environment
Expand Down
Loading
Loading