Fix to query store columns when fetching empty result #786
Workflow file for this run
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: Code Quality | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
codestyle: | |
name: codestyle | |
runs-on: ubuntu-latest | |
if: github.ref != 'refs/heads/main' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11.x' | |
architecture: 'x64' | |
- name: Install Poetry and dependencies | |
uses: SneaksAndData/github-actions/[email protected] | |
with: | |
install_extras: all | |
- name: Lint | |
env: | |
PROJECT_NAME: adapta | |
run: | | |
set -euxo pipefail | |
find "$PROJECT_NAME" -type f -name "*.py" | xargs poetry run pylint | |
- name: Black | |
run: | | |
set -euxo pipefail | |
poetry run black . --check --diff |