Skip to content

Add support for running multiple Chrome profiles sequentially #28

Add support for running multiple Chrome profiles sequentially

Add support for running multiple Chrome profiles sequentially #28

Workflow file for this run

name: Lint
on:
push:
branches: [master, develop]
paths:
- 'bing_rewards/**.py'
pull_request:
branches: develop
paths:
- 'bing_rewards/**.py'
workflow_dispatch:
jobs:
lint:
name: Run Linting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python >= 3.10
uses: actions/setup-python@v5
with:
python-version: '>=3.10'
cache: pip
- name: Install ruff
run: pip install ruff
- name: Run ruff lint
run: ruff check --output-format=github .
- name: Run ruff format
run: ruff format --check .