Enhance exhibitor submission UX with loading feedback and status visibility #80
Workflow file for this run
This file contains hidden or 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: Code Style | |
| on: | |
| push: | |
| branches: [main, master] | |
| paths-ignore: | |
| - "eventyay_exhibition/locale/**" | |
| - "eventyay_exhibition/static/**" | |
| pull_request: | |
| branches: [main, master] | |
| paths-ignore: | |
| - "eventyay_exhibition/locale/**" | |
| - "eventyay_exhibition/static/**" | |
| jobs: | |
| ruff: | |
| name: ruff | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Install Dependencies | |
| run: | | |
| uv sync | |
| uv pip install psycopg2-binary ruff | |
| - name: Run ruff (import sorting) | |
| run: uv run ruff check --select I . | |
| flake: | |
| name: flake8 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Install Dependencies | |
| run: | | |
| uv sync | |
| uv pip install psycopg2-binary | |
| - name: Run flake8 | |
| run: uv run flake8 . |