Skip to content

chore: add git status to see the logs #6

chore: add git status to see the logs

chore: add git status to see the logs #6

Workflow file for this run

---
name: lint
on:
push:
jobs:
pg-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt update && sudo apt install pgformatter
- run: pg_format -i ./**/*.sql
- run: git status
- run: '[[ -z $(git status -s) ]]'