Fix Windows build from source, add Window usage note to readme, up version to 1.0.8 #7
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: Check Code Quality | |
on: pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: psf/black@stable | |
with: | |
options: --check . | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Run flake8 | |
uses: julianwachholz/flake8-action@v2 | |
with: | |
checkName: "Python Lint" | |
path: ./relik | |
plugins: "pep8-naming==0.13.3 flake8-comprehensions==3.14.0" | |
config: .flake8 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |