Skip to content

implement batch aggregation on cli #94

implement batch aggregation on cli

implement batch aggregation on cli #94

Workflow file for this run

name: Run tests
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}
- name: Install dependencies
run: |
pip install -U pip
pip install -U .
- name: Run tests
run: python -m unittest discover