Skip to content

feat: added autogenerate in migrations to update DB from all sources #192

feat: added autogenerate in migrations to update DB from all sources

feat: added autogenerate in migrations to update DB from all sources #192

Workflow file for this run

name: Format
on:
push:
branches:
- "**"
pull_request:
branches:
- "main"
jobs:
run-formatter:
name: Run formatter
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.10.4
- name: Install Python dependencies
run: pip install black
- name: Format with Black
uses: wearerequired/lint-action@v2
with:
black: true
auto_fix: true
commit_message: "style: 🎨 fix code style issues with ${linter}"
github_token: ${{ secrets.GITHUB_TOKEN }}