Skip to content

Fix http error decorator #124

Fix http error decorator

Fix http error decorator #124

Workflow file for this run

name: tests
on:
push:
branches:
- master
- stable
pull_request:
paths:
- ".github/workflows/tests.yml"
- "Makefile"
- "fintoc/**/*.py"
- "tests/**/*.py"
jobs:
pytest:
runs-on: ubuntu-20.04
steps:
- name: Checkout to commit code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10.6"
- name: Install Poetry
run: |
make get-poetry
echo $HOME/.poetry/bin >> $GITHUB_PATH
- name: Set up environment cache
uses: actions/cache@v3
id: environment-cache
with:
key: environment-cache-v1-${{ hashFiles('**/poetry.lock') }}
path: .venv
- name: Install dependencies
if: steps.poetry-cache.outputs.cache-hit != 'true'
run: poetry install
- name: Run Pytest
run: make tests