Skip to content

Refactor SubwayFeed API key handling and update related tests #80

Refactor SubwayFeed API key handling and update related tests

Refactor SubwayFeed API key handling and update related tests #80

Workflow file for this run

name: Push
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: setup.py
- name: Install Dependencies
run: |
pip install pip==24.*
pip install .[dev]
- name: Test
run: make lint-test