Updated vectorscan pre-compilation to respect umask when writing data… #546
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-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt-get install -y flake8 python3-pip | |
- run: pip3 install flake8-bugbear | |
- run: flake8 --require-plugins pycodestyle,flake8-bugbear |