chore(deps): bump greenlet from 3.0.1 to 3.0.2 (#110) #246
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |