Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Revert "Expand functionality version" #20

Revert "Expand functionality version"

Revert "Expand functionality version" #20

Workflow file for this run

name: Auto-format
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install black
- name: Format with black
run: black .
- name: Stage changes
run: git add .
- name: Commit and push
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Format code from last commit"