Skip to content

Updated Action workflow #11

Updated Action workflow

Updated Action workflow #11

Workflow file for this run

name: Testing
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Running basic tests
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.10", "3.12"]
services:
manticoresearch-manticore:
image: manticoresearch/manticore:dev
options: --user root
ports:
- 9408:9308
steps:
- uses: actions/checkout@v4
- name: Use Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: |
docker logs "${{ job.services.manticoresearch-manticore.id }}"
sudo apt update && sudo apt -y install python3-pip
python3 -m pip install -e .
python3 test/test.py