Adding Support for XHCI Mouse on the installation #45
Workflow file for this run
This file contains hidden or 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
--- | |
'on': [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: Verify code with Lintly-Flake8 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Test action | |
id: test | |
uses: usama2490/[email protected] | |
with: | |
# The GitHub API token to create reviews with | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Fail if "new" violations detected or "any", default "new" | |
failIf: any | |
# Additional arguments to pass to flake8, | |
# default "." (current directory) | |
args: "--ignore=E402,W503 --max-line-length=120." |