From fa7eff3dffb5c3bd4447b3537a1fc9f34dd64ede Mon Sep 17 00:00:00 2001 From: mattie ruth backman Date: Thu, 19 Sep 2024 15:00:40 -0400 Subject: [PATCH] undo formatting changes --- .github/workflows/build.yaml | 6 +++--- .github/workflows/lint.yaml | 6 +++--- .github/workflows/publish.yaml | 12 ++++++------ .github/workflows/tests.yaml | 8 ++++---- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f04a37f7e..f64a199a2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -7,9 +7,9 @@ on: - main pull_request: branches: - - '**' + - "**" paths-ignore: - - 'docs/**' + - "docs/**" concurrency: group: build-${{ github.event.pull_request.number || github.ref }} @@ -17,7 +17,7 @@ concurrency: jobs: build: - name: 'Build and Install' + name: "Build and Install" runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index d8aa02af0..c9e7d21f8 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -7,9 +7,9 @@ on: - main pull_request: branches: - - '**' + - "**" paths-ignore: - - 'docs/**' + - "docs/**" concurrency: group: build-lint-${{ github.event.pull_request.number || github.ref }} @@ -17,7 +17,7 @@ concurrency: jobs: autopep8: - name: 'Formatting lints' + name: "Formatting lints" runs-on: ubuntu-latest steps: - name: Checkout repo diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index d748e0171..b4520ff0b 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -5,12 +5,12 @@ on: inputs: gitref: type: string - description: 'what git ref to build' + description: "what git ref to build" required: true jobs: build: - name: 'Build and upload wheels' + name: "Build and upload wheels" runs-on: ubuntu-latest steps: - name: Checkout repo @@ -45,9 +45,9 @@ jobs: path: ./dist publish-to-pypi: - name: 'Publish to PyPI' + name: "Publish to PyPI" runs-on: ubuntu-latest - needs: [build] + needs: [ build ] environment: name: pypi url: https://pypi.org/p/pipecat-ai @@ -66,9 +66,9 @@ jobs: print-hash: true publish-to-test-pypi: - name: 'Publish to Test PyPI' + name: "Publish to Test PyPI" runs-on: ubuntu-latest - needs: [build] + needs: [ build ] environment: name: testpypi url: https://pypi.org/p/pipecat-ai diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index f77bfda12..52ecc01f6 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -7,9 +7,9 @@ on: - main pull_request: branches: - - '**' + - "**" paths-ignore: - - 'docs/**' + - "docs/**" concurrency: group: build-test-${{ github.event.pull_request.number || github.ref }} @@ -17,7 +17,7 @@ concurrency: jobs: test: - name: 'Unit and Integration Tests' + name: "Unit and Integration Tests" runs-on: ubuntu-latest steps: - name: Checkout repo @@ -26,7 +26,7 @@ jobs: id: setup_python uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: "3.10" - name: Install system packages id: install_system_packages run: |