diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 69697d24..9e4ff377 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -625,6 +625,20 @@ jobs: run: make test if: ${{ contains( 'numpy', matrix.package )}} + ########################### + #~~~~~~~~~~~~~~~~~~~~~~~~~# + #~~~~~~|#############|~~~~# + #~~~~~~|#|~~~~~~~/##/~~~~~# + #~~~~~~|#|~~~~~/##/~~~~~~~# + #~~~~~~~~~~~~/##/~~~~~~~~~# + #~~~~~~~~~~/##/~~~~~~~~~~~# + #~~~~~~~~/##/~~~~~~~~~~~~~# + #~~~~~~/##/~~~~~~~~~~~~~~~# + #~~~~~~~~~~~~~~~~~~~~~~~~~# + # Test Service Adapters # + #~~~~~~~~~~~~~~~~~~~~~~~~~# + # Coming soon! + ############################# #~~~~~~~~~~~~~~~~~~~~~~~~~~~# #~~~~~~|#############|~~~~~~# diff --git a/Makefile b/Makefile index 86316ca6..c1897007 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,7 @@ install: ## install library lint-py: python -m isort --check csp/ examples/ setup.py python -m ruff check csp/ examples/ setup.py + python -m ruff format --check csp/ examples/ setup.py lint-cpp: # clang-format --dry-run -Werror -i -style=file `find ./cpp/ -name "*.*pp"` @@ -194,9 +195,6 @@ dependencies-debian: ## install dependencies for linux dependencies-fedora: ## install dependencies for linux yum install -y automake bison ccache cmake curl flex perl-IPC-Cmd tar unzip zip -dependencies-alma: ## install dependencies for linux - dnf install -y automake bison ccache cmake curl flex perl-IPC-Cmd tar unzip zip - dependencies-vcpkg: ## install dependnecies via vcpkg cd vcpkg && ./bootstrap-vcpkg.sh && ./vcpkg install diff --git a/docs/wiki/dev-guides/Build-CSP-from-Source.md b/docs/wiki/dev-guides/Build-CSP-from-Source.md index 3ecec0be..0ccaaf42 100644 --- a/docs/wiki/dev-guides/Build-CSP-from-Source.md +++ b/docs/wiki/dev-guides/Build-CSP-from-Source.md @@ -227,6 +227,7 @@ make lint-py # or # python -m isort --check csp/ setup.py # python -m ruff check csp/ setup.py +# python -m ruff format --check csp/ setup.py ``` **Python Autoformatting**