Skip to content

chore: add github workflow for tests #2

chore: add github workflow for tests

chore: add github workflow for tests #2

Workflow file for this run

on:
push:
branches:
- vector
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: run tests
run: |
pip3 install tox tox-docker
tox -e coverage