Skip to content

Commit

Permalink
feat: add pycodestyle dependency (#70)
Browse files Browse the repository at this point in the history
* feat: add pycodestyle dependency

* feat workflow: install pycodestyle via pip
  • Loading branch information
moki authored May 13, 2024
1 parent a84cf8a commit da28911
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ jobs:
run: |
(cd third_party && git clone -b develop --single-branch --depth 1 https://github.com/userver-framework/userver.git)
sudo apt update
sudo apt install --allow-downgrades -y pycodestyle $(cat third_party/userver/scripts/docs/en/deps/${{matrix.os}}.md | tr '\n' ' ')
sudo apt install --allow-downgrades -y $(cat third_party/userver/scripts/docs/en/deps/${{matrix.os}}.md | tr '\n' ' ')
pip install -r requirements.txt
- name: Setup ccache
run: |
Expand Down Expand Up @@ -80,4 +81,3 @@ jobs:
if: matrix.make == 'test-release'
run: |
killall service_template
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pycodestyle

0 comments on commit da28911

Please sign in to comment.