Skip to content

chore(TECHOPS-18898): fix pipeline #9

chore(TECHOPS-18898): fix pipeline

chore(TECHOPS-18898): fix pipeline #9

Workflow file for this run

name: Test
<<<<<<< HEAD

Check failure on line 3 in .github/workflows/release-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 3
on: [workflow_call]
=======
on:
pull_request:
branches:
- master
workflow_call:
>>>>>>> fd64f611d32e0bc6c8129fa9dd8b365163996c79
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
<<<<<<< HEAD
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install pytest pytest-asyncio
=======
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install pytest-asyncio
- name: Set up build tools
run: |
python -m pip install build
- name: Install circle-ooak
run: |
python -m build
python -m pip install -e .
>>>>>>> fd64f611d32e0bc6c8129fa9dd8b365163996c79
- name: Run tests
run: python -m pytest test/ -v