Skip to content

feat: improved error handling #4

feat: improved error handling

feat: improved error handling #4

Workflow file for this run

name: Tests
on:
push:
branches: [main, dev]
pull_request:
types: [opened, synchronize]
branches: [main, dev]
jobs:
test:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Set up environment variables
run: |
echo "BLOB_READ_WRITE_TOKEN=${{ secrets.BLOB_READ_WRITE_TOKEN }}" >> $GITHUB_ENV
- name: Run Python tests
run: |
python -m pytest tests/ -v