Skip to content

Adds test workflow

Adds test workflow #8

Workflow file for this run

name: Run tests
on:
push:
pull_request:
branches:
- main
jobs:
build:
run_name: Run tests

Check failure on line 11 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / Run tests

Invalid workflow file

The workflow is not valid. .github/workflows/run-tests.yml (Line: 11, Col: 5): Unexpected value 'run_name'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run Tests
run: python test_execution.py