Skip to content

Fixed a minor bug

Fixed a minor bug #11

Workflow file for this run

name: Tests
on:
push:
paths:
- 'MobileViViT/**'
- 'tests/**'
pull_request:
paths:
- 'MobileViViT/**'
- 'tests/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.11.0
uses: actions/setup-python@v3
with:
python-version: 3.11.0
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run tests
run: |
python -m unittest discover -s tests/