Skip to content

Update requirements.txt #16

Update requirements.txt

Update requirements.txt #16

Workflow file for this run

name: Lint
on:
- pull_request
jobs:
linting:
name: lint-job
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-lint.txt
# - name: Lint Python files with Flake8
# run: flake8 .