Added python3-mysqlclient dependency to RPM build #650
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: "Validate Code Styles" | |
on: [push] | |
jobs: | |
flake8: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt-get update && sudo apt-get install -y python3-full | |
- run: python3 -m venv ./venv | |
- run: ./venv/bin/pip install flake8 flake8-bugbear | |
- run: ./venv/bin/python -m flake8 --exclude venv --require-plugins pycodestyle,flake8-bugbear |