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

Merge pull request #185 from Jaseci-Labs/plugin_refactor #1112

Merge pull request #185 from Jaseci-Labs/plugin_refactor

Merge pull request #185 from Jaseci-Labs/plugin_refactor #1112

Workflow file for this run

name: Linting and Pre-commit checks
on:
pull_request:
push:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit run --all-files