Amend Hondana http internals to only send auth headers to endpoints explicitly requiring it #462
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: Type Coverage and Linting | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
types: [opened, reopened, synchronize] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.11", "3.x"] | |
name: "Type Coverage and Linting @ ${{ matrix.python-version }}" | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "Load cached poetry installation @ ${{ matrix.python-version }}" | |
id: cached-poetry | |
uses: actions/cache@v4 | |
with: | |
path: ~/.local | |
key: poetry-0 | |
- name: "Setup Poetry @ ${{ matrix.python-version }}" | |
if: steps.cached-poetry.outputs.cache-hit != 'true' | |
uses: snok/install-poetry@v1 | |
with: | |
version: latest | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: "Setup Python @ ${{ matrix.python-version }}" | |
id: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
cache: "poetry" | |
- name: "Install Python deps @ ${{ matrix.python-version }}" | |
if: ${{ steps.setup-python.outputs.cache-hit != 'true' }} | |
id: install-deps | |
run: | | |
poetry install --without=dev --no-interaction | |
- name: Activate venv @ ${{ matrix.python-version }} | |
run: | | |
echo "$(poetry env info --path)/bin" >> $GITHUB_PATH | |
- name: "Run Pyright @ ${{ matrix.python-version }}" | |
uses: jakebailey/pyright-action@v2 | |
with: | |
warnings: false | |
verify-types: "hondana" | |
ignore-external: true | |
annotate: ${{ matrix.python-version != '3.x' && 'all' || 'none' }} | |
- name: Lint | |
if: ${{ always() && steps.install-deps.outcome == 'success' }} | |
uses: chartboost/ruff-action@v1 |