Skip to content

Relax httpx version #61

Relax httpx version

Relax httpx version #61

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
lint:
name: Code Analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dciborow/[email protected]
with:
github_token: ${{ secrets.github_token }}
# GitHub Status Check won't become failure with warning.
level: warning
filter_mode: diff_context
glob_pattern: "**/*.py"
pylint_args: "--disable=all, --enable=unused-import"
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
# load cached venv if cache exists
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
# install dependencies if cache does not exist
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Check formatting
uses: psf/black@stable
#- name: Unit Test
# run: poetry run pytest