Skip to content

Fix Python Data Tests & Add to CI Via GitHub Actions #1

Fix Python Data Tests & Add to CI Via GitHub Actions

Fix Python Data Tests & Add to CI Via GitHub Actions #1

Workflow file for this run

# A GitHub action to run our data tests
name: Pytest Data Tests
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
jobs:
pytest:
name: 'Pytest'
runs-on: ubuntu-latest
description: 'Run Pytest for Data Test'

Check failure on line 16 in .github/workflows/pytest.yml

View workflow run for this annotation

GitHub Actions / Pytest Data Tests

Invalid workflow file

The workflow is not valid. .github/workflows/pytest.yml (Line: 16, Col: 5): Unexpected value 'description'
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install
pytest