Skip to content

Add python version

Add python version #3

Workflow file for this run

name: Test Suite
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4

Check failure on line 11 in .github/workflows/test_suite.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_suite.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: python -m unittest discover tests