Skip to content

Commit 61d2ea3

Browse files
committed
style(yml): Format code.
Using the Prettier plugin in VSCode, the code has been formatted. Removed extra spaces and changed single quotes to double quotes. style(yml): 格式化代码。 通过vscode上的Prettier插件,对代码进行格式化。 删除多余空格,单引号改成双引号。
1 parent 0ff2582 commit 61d2ea3

5 files changed

Lines changed: 10 additions & 13 deletions

File tree

.github/workflows/dependency_review.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
#
88
# Source repository: https://github.com/actions/dependency-review-action
99
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
10-
name: 'Dependency review'
10+
name: "Dependency review"
1111
on:
1212
pull_request:
13-
branches: [ "main", "dev" ]
13+
branches: ["main", "dev"]
1414

1515
# If using a dependency submission action in this workflow this permission will need to be set to:
1616
#
@@ -27,9 +27,9 @@ jobs:
2727
dependency-review:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- name: 'Checkout repository'
30+
- name: "Checkout repository"
3131
uses: actions/checkout@v4
32-
- name: 'Dependency Review'
32+
- name: "Dependency Review"
3333
uses: actions/dependency-review-action@v4
3434
# Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options.
3535
with:

.github/workflows/python_publish.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ jobs:
2828

2929
- name: Build release distributions
3030
run: |
31-
# NOTE: put your own distribution build steps here.
32-
# python -m pip install build
33-
# python -m build
3431
pip install uv
3532
uv build
3633

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
with:
2020
token: ${{ secrets.RELEASE_PLEASE_ACCESS_TOKEN }}
2121
config-file: release-please-config.json
22-
manifest-file: .release-please-manifest.json
22+
manifest-file: .release-please-manifest.json

.github/workflows/sync_to_gitee.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Sync To Gitee
22

3-
on: [ push, delete, create ]
3+
on: [push, delete, create]
44

55
jobs:
66
build:

.github/workflows/website_deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Website Deploy
1+
name: Website Deploy
22
on:
33
push:
44
branches:
@@ -19,14 +19,14 @@ jobs:
1919
- uses: actions/setup-python@v5
2020
with:
2121
python-version: 3.x
22-
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
22+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
2323
- uses: actions/cache@v4
2424
with:
2525
key: mkdocs-material-${{ env.cache_id }}
26-
path: .cache
26+
path: .cache
2727
restore-keys: |
2828
mkdocs-material-
29-
29+
3030
- name: Check if CHANGELOG.md has changed
3131
id: changelog_check
3232
run: |

0 commit comments

Comments
 (0)