Abstract httpx pagination logic and dataframe concat operations. #282
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: lint | |
on: [push, pull_request] # yamllint disable-line rule:truthy | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up py10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: install pipx | |
run: | | |
sudo apt update | |
sudo apt install pipx | |
pipx ensurepath | |
sudo pipx ensurepath --global | |
- name: install poetry | |
run: | | |
pipx install poetry | |
- name: install dev packages | |
run: | | |
poetry install --with dev | |
- name: run linters | |
run: | | |
poetry run .ci/lint.sh |