Skip to content

Adding dev requirments and editing tests #2

Adding dev requirments and editing tests

Adding dev requirments and editing tests #2

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install dev_requirments.txt
run: pip install -e .

Check failure on line 24 in .github/workflows/tests.yaml

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yaml (Line: 24, Col: 9): 'run' is already defined
- name: Test with pytest
run: pytest tests