Skip to content

Multi node check

Multi node check #18

Workflow file for this run

name: unit
on:
push:
# Runs for pull requests
pull_request:
branches:
- master
# Runs on publish
release:
types:
[published]
# Allow manual triggers
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
# Cancel previous jobs if a new version was pushed
concurrency:
group: "${{ github.ref }}-${{ matrix.arch }}"
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: dependencies
run: |
pip install poetry
poetry env use python3.10
source $(poetry env info -p)/bin/activate
# poetry doesnot work when installing those !?
pip install -e benchmate
pip install antlr4-python3-runtime==4.9.3
pip install -e .
poetry install --with dev
- name: tests
run: |
source $(poetry env info -p)/bin/activate
pytest --ignore=tests/integration tests/