Skip to content
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.

Add nodes submodule to python repository #156

Add nodes submodule to python repository

Add nodes submodule to python repository #156

Workflow file for this run

name: Pytest
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- name: Install pip dependencies
run: |
pip install ruff pytest
pip install -r requirements.txt
- name: Run python tests
run: pytest --ignore=flojoy/nodes