Skip to content

add ENDPOINT_URL environment option (#53) #141

add ENDPOINT_URL environment option (#53)

add ENDPOINT_URL environment option (#53) #141

Workflow file for this run

name: Run Unittest
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
env:
PYTHON_VERSION: 3.11
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Install poetry and dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run test
run: |
poetry run python -m pytest ./tests