From 1b626cea9963f0ca0f2a6a66157d5a6184e451f3 Mon Sep 17 00:00:00 2001 From: "Kevin J. Sung" Date: Thu, 28 Mar 2024 07:13:40 -0400 Subject: [PATCH] format YAML files (#112) --- .github/workflows/build-and-release.yml | 2 +- .github/workflows/check.yml | 12 ++++++------ .github/workflows/docs.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 927dee241..3e29fc442 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -58,4 +58,4 @@ jobs: name: artifact path: dist - - uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file + - uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 374a6c9cc..840dce314 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -5,7 +5,7 @@ on: branches: - main tags: - - '*' + - "*" pull_request: workflow_dispatch: @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Install dependencies @@ -38,7 +38,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Set up Python @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - tox-env: ['coverage', 'type', 'lint', 'format', 'docs'] + tox-env: ["coverage", "type", "lint", "format", "docs"] steps: - uses: actions/checkout@v3 - name: Install dependencies @@ -65,7 +65,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.12' + python-version: "3.12" - name: Install tox run: | python -m pip install --upgrade pip @@ -73,4 +73,4 @@ jobs: - name: Run tox environment shell: bash run: | - tox run -e ${{ matrix.tox-env }} \ No newline at end of file + tox run -e ${{ matrix.tox-env }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c046fb509..3df19d948 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: '3.12' + python-version: "3.12" - name: Install dependencies run: | python -m pip install --upgrade pip