Making it more reliable #2
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: Eugene CI check | |
env: | |
EUGENE_VERSION: "0.6.1" | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
lint-migration: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11.2 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install python dependencies | |
run: | | |
export DISPATCH_LIGHT_BUILD=1 | |
python -m pip install --upgrade pip | |
pip install -e ".[dev]" | |
- name: Download eugene | |
run: | | |
curl -L https://github.com/kaaveland/eugene/releases/download/$EUGENE_VERSION/eugene-x86_64-unknown-linux-musl -o eugene | |
chmod +x eugene | |
- name: Generate sql files | |
run: | | |
dispatch database upgrade --revision-type tenant --sql | |
- name: Lint files | |
run: ./eugene lint alembic_output.sql -f md --accept-failures > lint.md | |
- name: Post Comment | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
COMMENT=$(cat lint.md) | |
gh pr comment ${{ github.event.pull_request.number }} --body "$COMMENT" |