Skip to content

fix: Remove deprecated S3 credential flags #83

fix: Remove deprecated S3 credential flags

fix: Remove deprecated S3 credential flags #83

Workflow file for this run

# Run tests
name: Tests
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Run tests
run: |
pytest