Skip to content

feat: make it work with OAuth 2 #2

feat: make it work with OAuth 2

feat: make it work with OAuth 2 #2

Workflow file for this run

name: Linting validation using ruff
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip
pip install -r requirements.txt
- name: Lint with ruff
run: |
ruff check