Skip to content

Workflow file for this run

name: Python Tests
on:
push:
branches: [ "gorilla" ]
pull_request:
branches: [ "gorilla" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:

Check failure on line 12 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.9'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest requests
- name: Run pytest
run: |
PYTHONPATH=$PYTHONPATH:$(pwd) pytest