From 6f47fe0eaa7bc65a0b72c1961fb0824e68ae3687 Mon Sep 17 00:00:00 2001 From: Donkie Date: Mon, 28 Aug 2023 21:24:55 +0200 Subject: [PATCH] Remove style check --- .github/workflows/ci.yml | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8eb42ed..2909896 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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