Skip to content

chore: add dependabot configuration #16

chore: add dependabot configuration

chore: add dependabot configuration #16

Workflow file for this run

name: Unit test
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
name: pytest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run tests
run: |
PYTHONPATH=image/tools pytest tests