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

Commit

Permalink
Create pylint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
QuBerto authored May 3, 2024
1 parent 3c61fbe commit 889af3a
Showing 1 changed file with 27 additions and 0 deletions.
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

0 comments on commit 889af3a

Please sign in to comment.