Skip to content

Merge branch 'main' of https://github.com/lucas-guerin-44/datalake-api #20

Merge branch 'main' of https://github.com/lucas-guerin-44/datalake-api

Merge branch 'main' of https://github.com/lucas-guerin-44/datalake-api #20

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
cache-dependency-path: |
requirements.txt
requirements-test.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-test.txt
- name: Run tests
run: pytest tests/ -v --tb=short