Skip to content

chore: enable github action auto update in dependabot.yml (#226) #1097

chore: enable github action auto update in dependabot.yml (#226)

chore: enable github action auto update in dependabot.yml (#226) #1097

Workflow file for this run

name: Lint Imports
on:
push:
branches: [ main ]
pull_request:
branches:
- '**'
jobs:
lint-imports:
name: Lint Python Imports
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install pip
run: pip install -r requirements/pip.txt
- name: Install Dependencies
run: pip install -r requirements/ci.txt
- name: Analyze imports
run: lint-imports