Skip to content

Many fixes and improvements + workflows pass again -> version 0.5.0 #15

Many fixes and improvements + workflows pass again -> version 0.5.0

Many fixes and improvements + workflows pass again -> version 0.5.0 #15

Workflow file for this run

name: Format check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
merge_group:
jobs:
format-check:
runs-on: ${{matrix.os}}
strategy:
fail-fast: true
matrix:
os: [ubuntu-22.04]
steps:
- name: Checkout the repository
uses: actions/checkout@v3
with:
path: qlever-control
- name: Install dependencies needed for checking
run: |
sudo apt update && sudo apt install flake8
pip install isort
- name: Check format, compilation, and headers
working-directory: ${{github.workspace}}/qlever-control
run: |
for PY in $(find src test -name "*.py"); do printf "$PY ... "; flake8 $PY && python3 -m py_compile $PY && isort -c $PY && echo "OK"; done