Skip to content

Merge pull request #165 from illia-yurtsiv-proxet/feature/set-env-var… #143

Merge pull request #165 from illia-yurtsiv-proxet/feature/set-env-var…

Merge pull request #165 from illia-yurtsiv-proxet/feature/set-env-var… #143

Workflow file for this run

name: lint
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 2
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.10"
- name: Install pre-commit hooks
run: |
pip install -U pip==23.1.0
pip install -U pre-commit==3.4.0
pre-commit install
- name: Run pre-commit hooks
run: |
pre-commit run --all-files