Skip to content

Commit

Permalink
Fix flake order
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-Robbins committed Jan 10, 2024
1 parent c2dbe78 commit 700751c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/pr_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@ jobs:
run: |
ccache -sv
- name: Code style check
run: |
export PYENV_ROOT="$HOME/.pyenv"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
pyenv local 3.11
python3 -m pip install flake8
cd chdb && python3 -m flake8
working-directory: /home/ubuntu/pr_runner/chdb

- name: Copy submodules
run: cp -a /builder_cache/contrib /home/ubuntu/pr_runner/chdb/

Expand All @@ -46,6 +36,16 @@ jobs:
git status -v || true
continue-on-error: true

- name: Code style check
run: |
export PYENV_ROOT="$HOME/.pyenv"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
pyenv local 3.11
python3 -m pip install flake8
cd chdb && python3 -m flake8
working-directory: /home/ubuntu/pr_runner/chdb

- name: Cleanup dist directory
run: rm -rf /home/ubuntu/pr_runner/chdb/dist/*

Expand Down

0 comments on commit 700751c

Please sign in to comment.