Skip to content

Update to f-strings #159

Update to f-strings

Update to f-strings #159

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request: ~
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install deps & the package itself
run: |
pip install requests-oauthlib
pip install -e .
- name: Run tests...
run: python -m unittest discover