Skip to content

Update API references in Makefile and README.md to fix rebranding issue from polygon.io to massive.com #1339

Update API references in Makefile and README.md to fix rebranding issue from polygon.io to massive.com

Update API references in Makefile and README.md to fix rebranding issue from polygon.io to massive.com #1339

Workflow file for this run

name: lint
on:
push:
tags:
- v*
branches:
- v1
pull_request:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
name: Lint ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
uses: abatilo/actions-poetry@v2
- name: Install pypi deps
run: poetry install
- name: Style lint
run: make style
- name: Static lint
run: make static
if: always()