Skip to content

Basic Unit Test Framework (#6) #1

Basic Unit Test Framework (#6)

Basic Unit Test Framework (#6) #1

Workflow file for this run

name: Testing duckreg
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ['3.9', '3.10', '3.11', '3.12']

Check failure on line 20 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Testing duckreg

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 20, Col: 25): A sequence was not expected
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Install test dependencies
run: |
pip install pytest
- name: Run tests
run: |
pytest