Skip to content

Vedantsahai18 is testing the code #402

Vedantsahai18 is testing the code

Vedantsahai18 is testing the code #402

name: Test integrations-service
run-name: ${{ github.actor }} is testing the code
on:
pull_request:
paths:
- 'integrations-service/**'
push:
paths:
- 'integrations-service/**'
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Set up python and install dependencies
run: |
cd integrations-service
uv python install
uv sync --all-extras --dev
- name: Run tests
run: |
cd integrations-service
uv run poe test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}