Skip to content

feat: 改善端點, 新增 Type Hints #14

feat: 改善端點, 新增 Type Hints

feat: 改善端點, 新增 Type Hints #14

Workflow file for this run

name: black
on: [push]
jobs:
linter_name:
name: black formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Format code with black
run: |
pip install black
black .
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: ${{ github.actor }}
author_email: ${{ github.actor }}@users.noreply.github.com
message: "style: Format code with black"
add: "."
branch: ${{ github.ref }}