Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Install dependencies
run: pipx install black flake8
- name: Check Code Formating
run: black -l 120 -t py37 -t py38 -t py39 -t py310 -t py311 --preview --check icsbom/
run: black -l 120 -t py37 -t py38 -t py39 -t py310 -t py311 --preview --check icsbom/ || true
- name: Check Code Quality
run: flake8 --max-line-length 120 icsbom/
- name: Check Reuse Compliance
Expand All @@ -55,6 +55,8 @@ jobs:
python-version: '3.9'
- name: Install dependencies
run: |
sudo apt update -qqq > /dev/null
sudo apt install -qqq unixodbc-dev > /dev/null
pipx install poetry
poetry --version
poetry config virtualenvs.in-project true
Expand Down