Skip to content

Fix Windows build from source, add Window usage note to readme, up version to 1.0.8 #7

Fix Windows build from source, add Window usage note to readme, up version to 1.0.8

Fix Windows build from source, add Window usage note to readme, up version to 1.0.8 #7

Workflow file for this run

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 }}