Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Create pylint.yml #189

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI Checks

on:
pull_request:
push:

jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
architecture: x64
cache: 'pip'

- name: Install dependencies
run: pip install -r requirements.txt

- name: Run pre-commit hook
run: |
pre-commit install -f --install-hooks
pre-commit run -a -v --color=always --show-diff-on-failure
Loading