diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 0ab21247..bf78bba3 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 diff --git a/Taskfile.yml b/Taskfile.yml index 4146c23b..a9d6e46c 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -29,6 +29,11 @@ tasks: cmds: - docker build --no-cache --build-arg VERSION=3.9 -f Dockerfile-builder -t jitsuin-archivist-python-builder . + builder-3.10: + desc: Build a docker environment with the right dependencies and utilities + cmds: + - docker build --no-cache --build-arg VERSION=3.10 -f Dockerfile-builder -t jitsuin-archivist-python-builder . + check: desc: Check the style, bug and quality of the code deps: [about]