mirror of
https://github.com/sezanzeb/input-remapper
synced 2024-11-02 15:40:19 +00:00
26 lines
681 B
YAML
26 lines
681 B
YAML
|
name: Lint
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
black:
|
||
|
runs-on: ubuntu-latest
|
||
|
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
|
||
|
strategy:
|
||
|
matrix:
|
||
|
python-version: ["3.10"]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Set up Python ${{ matrix.python-version }}
|
||
|
uses: actions/setup-python@v2
|
||
|
with:
|
||
|
python-version: ${{ matrix.python-version }}
|
||
|
- name: Install dependencies
|
||
|
run: |
|
||
|
scripts/ci-install-deps.sh
|
||
|
pip install black
|
||
|
- name: Analysing the code with black --check --diff
|
||
|
run: |
|
||
|
black --check --diff ./inputremapper ./tests
|
||
|
|