Skip to content

Add workbench and fix python3 invocation #3

Add workbench and fix python3 invocation

Add workbench and fix python3 invocation #3

Workflow file for this run

name: Response tests
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout schemas repo
uses: actions/checkout@v4
with:
repository: OBDb/.schemas
path: tests/schemas
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run tests
run: |
pytest tests/ --ignore=tests/schemas