Skip to content

fix: 서버 수 업데이트 시 오류 핸들링 #115

fix: 서버 수 업데이트 시 오류 핸들링

fix: 서버 수 업데이트 시 오류 핸들링 #115

Workflow file for this run

name: Cheking Code Style
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install black isort
- name: Checking style
run: |
black ./koreanbots --check
isort ./koreanbots --check --profile=black