Skip to content

Updated numeric aggregation and added options for index aggregation #90

Updated numeric aggregation and added options for index aggregation

Updated numeric aggregation and added options for index aggregation #90

Workflow file for this run

name: Installation
on:
pull_request:
push:
branches:
- "main"
jobs:
install-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set CI environment variable
run: echo "CI=true" >> $GITHUB_ENV
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Cache Poetry dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
make install