Skip to content

Update CI push's target branch and enable ruff's rules #109

Update CI push's target branch and enable ruff's rules

Update CI push's target branch and enable ruff's rules #109

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
tags: "*"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pipenv
- uses: pre-commit/[email protected]