Skip to content

In this optimized version, I have made the following changes to impro… #27

In this optimized version, I have made the following changes to impro…

In this optimized version, I have made the following changes to impro… #27

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
format:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9 # or any version you prefer
- name: Install black
run: |
pip install black
- name: Check code formatting with black
run: |
black --check .