Skip to content

test: 新增部分測試、修正細微錯誤 (#41) #26

test: 新增部分測試、修正細微錯誤 (#41)

test: 新增部分測試、修正細微錯誤 (#41) #26

Workflow file for this run

name: Code formatter
on: [push]
jobs:
linter_name:
name: Code formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Format code with black and isort
run: |
pip install black isort
isort .
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 and isort"
add: "."