Skip to content

API: Adding iso datetimes to datalake response #305

API: Adding iso datetimes to datalake response

API: Adding iso datetimes to datalake response #305

Workflow file for this run

name: Run tests
on: [push, pull_request]

Check failure on line 2 in .github/workflows/actions.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/actions.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
jobs:
test-client:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.12"]
extras: ["test", "test,queuable,sentry"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Install dependencies
working-directory: ./client
run: |
python -m pip install --upgrade pip
pip install -e .[${{ matrix.extras }}]
- name: Test
working-directory: ./client
run: |
pytest