Skip to content

Add support for logging in via an OAuth token #57

Add support for logging in via an OAuth token

Add support for logging in via an OAuth token #57

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
jobs:
pre-commit:
name: Pre-commit
strategy:
matrix:
python-version: [3.8, 3.9]
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
- name: Install dependencies
run: poetry install
- name: Run pre-commit on all files
run: |
poetry run pre-commit run --all-files --show-diff-on-failure --color=always