Skip to content

Feature/ci testing setup #1

Feature/ci testing setup

Feature/ci testing setup #1

Workflow file for this run

name: Run Tests
on:
push:
branches: ['*', 'develop']
pull_request:
branches: ['develop', 'main']
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: [3.7, 3.8, 3.9, 3.10]

Check failure on line 21 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Run Tests

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 21, Col: 27): A sequence was not expected
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run tests
run: poetry run pytest