Skip to content

fix(chore): version bump + added missing file #1

fix(chore): version bump + added missing file

fix(chore): version bump + added missing file #1

name: "[pytest] Unique SDK"
on:
pull_request:
paths:
- 'unique_sdk/**'
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Poetry
run: |
POETRY_VERSION='1.8.3'
PIPX_HOME=/opt/pipx PIPX_BIN_DIR=/usr/local/bin pipx install poetry==$POETRY_VERSION
- name: Install dependencies
working-directory: ${{ env.PACKAGE_DIR }}
run: poetry install
- name: Run tests
working-directory: ${{ env.PACKAGE_DIR }}
run: poetry run pytest