Skip to content

Minor Changes for 0.1.0 #3

Minor Changes for 0.1.0

Minor Changes for 0.1.0 #3

Workflow file for this run

name: Run formatting on the codebase.
on: [push]
jobs:
run-script:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install dependencies (if any)
run: |
python -m pip install --upgrade pip
pip install --upgrade autopep8
- name: Run the script
run: |
autopep8 --in-place --recursive .