Compare commits

...

2 Commits

Author SHA1 Message Date
cd6e11fe48 refactor[auto]: pre-commit
All checks were successful
Push to local registry / Build and push image (push) Successful in 2m8s
2024-10-13 01:06:41 +03:00
1de35afed2 ci: Update pre-commit 2024-10-13 01:06:10 +03:00
3 changed files with 6 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Login to Docker Registry - name: Login to Docker Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
@@ -21,7 +21,7 @@ jobs:
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
@@ -32,4 +32,3 @@ jobs:
push: true push: true
tags: gitea.likemath.ru/alex/s3-mirror:latest tags: gitea.likemath.ru/alex/s3-mirror:latest
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64

1
.gitignore vendored
View File

@@ -159,4 +159,3 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear # and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/ #.idea/

View File

@@ -1,11 +1,11 @@
repos: repos:
- repo: https://github.com/psf/black - repo: https://github.com/psf/black
rev: 22.12.0 rev: 24.10.0
hooks: hooks:
- id: black - id: black
args: [--line-length=88, --target-version=py38] args: [--line-length=88, --target-version=py38]
- repo: https://gitlab.com/pycqa/flake8 - repo: https://github.com/PyCQA/flake8
rev: 3.9.2 rev: 7.1.1
hooks: hooks:
- id: flake8 - id: flake8
args: # arguments to configure flake8 args: # arguments to configure flake8
@@ -20,7 +20,7 @@ repos:
- id: trailing-whitespace - id: trailing-whitespace
- id: check-json - id: check-json
- repo: https://github.com/pycqa/isort - repo: https://github.com/pycqa/isort
rev: 5.10.1 rev: 5.13.2
hooks: hooks:
- id: isort - id: isort
args: ["--filter-files" ] args: ["--filter-files" ]