Vedantsahai18 is testing the code #402
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |