Skip to content

Updated numeric aggregation and added options for index aggregation #91

Updated numeric aggregation and added options for index aggregation

Updated numeric aggregation and added options for index aggregation #91

Workflow file for this run

name: ruff
on:
pull_request:
push:
branches:
- "main"
jobs:
check:
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: Installation
run: |
python -m pip install --upgrade pip
python -m pip install poetry
make install
- name: ruff
run: |
make check