Skip to content

Update all non-major dependencies - abandoned #20

Update all non-major dependencies - abandoned

Update all non-major dependencies - abandoned #20

Workflow file for this run

name: Analytics Checks
on:
workflow_call:
pull_request:
paths:
- analytics/**
- .github/workflows/ci-analytics.yml
defaults:
run:
working-directory: ./analytics
jobs:
lint-test:
name: Analytics Lint, Format & Tests
runs-on: ubuntu-latest
steps:
# set up python
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
# install poetry
- uses: Gr1N/setup-poetry@v8
- name: Install analytics package using poetry
run: make install
- name: Run linting
run: make lint
- name: Run tests
run: make test