Skip to content

chore(deps): bump greenlet from 3.0.1 to 3.0.2 (#110) #246

chore(deps): bump greenlet from 3.0.1 to 3.0.2 (#110)

chore(deps): bump greenlet from 3.0.1 to 3.0.2 (#110) #246

Workflow file for this run

name: "Formatting"
on:
push:
branches: ["main"]
jobs:
formatting:
name: Fix formatting issues
runs-on: windows-latest
permissions:
actions: read
contents: write
security-events: write
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip" # caching pip dependencies
- run: pip install -r requirements.txt
- name: Install dependencies
run: npm ci
- name: runs prettier
run: npx prettier -w .
- name: runs black
run: black main.py
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Prettified Code