Files
scribe/.github/workflows/pytest.yaml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 7: did not find expected key
Tryndaron cce570f648 ci datei
2024-03-28 11:29:44 +01:00

32 lines
571 B
YAML

name: Run tests
on: push
#pull_request:
#branches: ['main', 'develop']
workflow_dispatch:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install Dependencies
run: python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pytest
env:
hf_token: ${{ secrets.HF_TOKEN }}
run: pytest