Skip to content

adding first example #6

adding first example

adding first example #6

Workflow file for this run

name: graphreduce_actions
env:
DOCKER_IMAGE_NAME: graphreduce
DOCKER_IMAGE_TAG: latest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
python setup.py install
- name: Python client tests
run: |
pytest tests/ -s