Skip to content

Commit

Permalink
ruff in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pomponchik committed Nov 17, 2023
1 parent 1cf1085 commit c298653
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Lint

on:
push

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7']

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
shell: bash
run: pip install -r requirements_dev.txt

- name: Run ruff
shell: bash
run: ruff instld

0 comments on commit c298653

Please sign in to comment.