Remove style check

This commit is contained in:
Donkie
2023-08-28 21:24:55 +02:00
parent 992c3220c7
commit 6f47fe0eaa

View File

@@ -15,26 +15,6 @@ env:
IMAGE_NAME: donkie/spoolman
jobs:
#
# Linting
#
style:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install pre-commit
run: pip install pre-commit==3.3.3
- name: Run pre-commit
run: pre-commit run --all-files
#
# Build native image for integration tests
#
build-amd64:
@@ -221,7 +201,7 @@ jobs:
#
release:
if: ${{ github.event_name != 'pull_request' }}
needs: [test, build-amd64, build-arm64, build-armv7, style]
needs: [test, build-amd64, build-arm64, build-armv7]
runs-on: ubuntu-latest
steps:
- name: Checkout