Skip to content

Merge pull request #17 from TariqAHassan/export-collect-tasks-tool #214

Merge pull request #17 from TariqAHassan/export-collect-tasks-tool

Merge pull request #17 from TariqAHassan/export-collect-tasks-tool #214

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup redis
uses: shogo82148/actions-setup-redis@v1
with:
redis-version: '6.x'
- run: redis-cli ping
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python setup.py install
pip install -r dev_requirements.txt
pip install torch==2.3.1
- name: Test with pytest
run: |
bash tests/run.sh