From 40a92cfa32cc6b97540ba5d0621a0f63cef96dc3 Mon Sep 17 00:00:00 2001 From: Jakub Miazek Date: Sat, 4 Jun 2022 15:26:23 +0200 Subject: [PATCH 1/2] update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9f6b602..9428e67 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,16 @@ make help and you receive below list: ```text build Build project with compose -down Reset project containers with compose +clean Clean Reset project containers and volumes with compose format Format project code. help Show this help lint Lint project code. -lock Refresh pipfile.lock -requirements Refresh requirements.txt +migrate-apply apply alembic migrations to database/schema +migrate-create create new alembic migration +py-upgrade Upgrade project py files with pyupgrade library for python version 3.10 +requirements Refresh requirements.txt from pipfile.lock safety Check project and dependencies with safety https://github.com/pyupio/safety +slim-build with power of docker-slim build smaller and safer images test Run project tests up Run project with compose ``` From 38ac92e95a3e3c2dbabfd39fe7487a72a2f082fc Mon Sep 17 00:00:00 2001 From: Jakub Miazek Date: Sat, 4 Jun 2022 15:29:34 +0200 Subject: [PATCH 2/2] extend ci for python 3.8 and 3.11-dev --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index bb31708..b582ff0 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11-dev"] fail-fast: false services: