Skip to content

thread dump service rust #3728

thread dump service rust

thread dump service rust #3728

Workflow file for this run

name: nucliadb Models (py)
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
# Job to run pre-checks
pre-checks:
name: NucliaDBModelsTests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: make -C nucliadb_models/ install-dev
- name: Run pre-checks
run: make -C nucliadb_models/ lint