Skip to content

remove API key option from CLI commands and SubwayFeed methods #79

remove API key option from CLI commands and SubwayFeed methods

remove API key option from CLI commands and SubwayFeed methods #79

Workflow file for this run

name: Push
on: push
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up Cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: |
${{ format('pip-{0}-{1}', matrix.python-version, hashFiles('setup.py')) }}
- name: Install Dependencies
run: |
pip install pip==23.*
pip install .[dev]
- name: Black
run: black src test --check --verbose
- name: Pytest
run: pytest --verbose